Как заставить многоточие работать в гибком контейнере? - PullRequest
1 голос
/ 03 июня 2019

Когда у меня нет display: flex на .container, текст корректно обрезается при уменьшении размера контейнера.

enter image description here

Но зеленый блок и текст больше не находятся рядом, потому что у контейнера нет display: flex. Когда я добавляю его в контейнер, зеленый блок и текст выравниваются правильно, но текст больше не усекается (многоточие отсутствует).

enter image description here

Как я могу убедиться, используя flex, что блок и текст выровнены, а текст обрезан с помощью эллипсов в контейнере с динамической шириной?

мой пример codepen

body {
  padding: 20px;
}

.container {
  display: flex;
}

.block {
  width: 25px;
  height: 25px;
  padding: 10px;
  background-color: yellowgreen;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px
}

.text {
  display: flex;
}

.truncate {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20pt;
}
<div class="container">
  <div class="block">B</div>
  <div class="text">
    <div class="truncate">
      3. This is a long string that is OK to truncate please and thank you
    </div>
  </div>
</div>

1 Ответ

1 голос
/ 03 июня 2019

Ваш гибкий элемент с многоточием должен иметь возможность уменьшаться ниже ширины содержимого.См. Мой ответ здесь для получения полной информации: Почему гибкие элементы не сжимаются до размера контента?

пересмотренная кодовая ручка

body {
  padding: 20px;
}

.container {
  display: flex;
  border: 1px dashed red; /* demo */
}

.block {
  flex: 0 0 25px;  /* flex-grow, flex-shrink, flex-basis */
                   /* set flex-shrink to 0 to prevent item from shrinking below 25px */
  padding: 10px;
  background-color: yellowgreen;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.text {
  display: flex;
  min-width: 0; /* allow item to shrink below content size */
}

.truncate {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20pt;
  background-color: yellow; /* demo */
}
<div class="container">
  <div class="block">B</div>
  <div class="text">
    <div class="truncate">
      3. This is a long string that is OK to truncate please and thank you
    </div>  
  </div>
</div>
...