I don't know why this simple CSS isn't working...
.app{
display: flex;
cursor: pointer;
}
.test{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100px;
border: 1px solid navy;
min-width: 0;
}
<div class="app">
<div class="test">Test Test Test Test Test Test </div>
</div>
I want ellipsis work with the property display:flex i traied minwidth =0 but it doesnt work
You can't use
inlineproperties forflexcomponent. You can wrap your text by inline component,spanfor example.