I read post on similar issue but still not able to get it working.
I am trying to have text ellipses when there is big text.
JSFiddle
.fixIssue {
align-items: center;
}
.thumbnail {
width: 68px;
height: 68px;
border-radius: 50%;
object-fit: cover;
}
.imgDiv {
border: 1px solid yellow;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-around;
}
.textSpanInner {
display: flex;
justify-content: flex-start;
align-items: center;
}
.linkStyle {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
<div style="height: 150px; border: 1px solid red;box-sizing:border-box">
<span class="fixIssue" style="display:flex; justify-content:flex-start;flex-wrap:nowrap;height:100px; border:1px dotted green;">
<span style="flex:0 0 auto; margin-right:10px;">
<div class="imgDiv">
<img src="https://dummyimage.com/68x68/d612e8/" class="thumbnail" />
</div>
</span>
<span style="flex:0 0 auto; margin-right:10px;">
<span class="textSpanInner">
<a href="" class="linkStyle">Big Name HereBig Name HereBig Name HereBig Name Here</a>
</span>
</span>
</span>
</div>
For the
ellipsis
to work when an ancestor is a flex item, all the children of the flex item and the flex item itself needoverflow: hidden
(ormin-width: 0
), and the flex item also needflex-shrink: 1
so it is allowed to shrink below its content.Additionally, a flex item's
min-width
defaults toauto
, which as well means it isn't allowed to be smaller than its content, hence the need ofoverflow: hidden
(ormin-width: 0
).So if you make the following changes it will work:
overflow: hidden
to<span style="flex:0 1 auto; margin-right:10px; overflow: hidden">
flex-shrink
to1
in<span style="flex:0 1 auto; margin-right:10px; overflow: hidden">
overflow: hidden;
to.textSpanInner
Fiddle demo
Note, I also swapped the
imgDiv
to aimgSpan
as it is invalid to have a block element as a child of an inline elementStack snippet