admin管理员组文章数量:1345069
Is there any way to let the user know that not all content fits in a flex container?
Any icons, signs, texts etc. Like text-overflow: ellipsis;
which can be set for plain text.
.list-panel {
display: flex;
overflow-x: clip;
width: 300px; /* <<----- */
gap: 8px;
padding: 10px;
background: skyblue;
}
.item {
background: lightcyan;
}
<div class="list-panel">
<span class="item">111111111111</span>
<span class="item">222222222222</span>
<span class="item">333333333333</span>
<span class="item">444444444444</span>
<span class="item">555555555555</span>
<span class="item">666666666666</span>
</div>
Is there any way to let the user know that not all content fits in a flex container?
Any icons, signs, texts etc. Like text-overflow: ellipsis;
which can be set for plain text.
.list-panel {
display: flex;
overflow-x: clip;
width: 300px; /* <<----- */
gap: 8px;
padding: 10px;
background: skyblue;
}
.item {
background: lightcyan;
}
<div class="list-panel">
<span class="item">111111111111</span>
<span class="item">222222222222</span>
<span class="item">333333333333</span>
<span class="item">444444444444</span>
<span class="item">555555555555</span>
<span class="item">666666666666</span>
</div>
Share
Improve this question
edited 11 hours ago
Sean
8,1434 gold badges26 silver badges53 bronze badges
asked 11 hours ago
DZNDZN
1,5843 gold badges24 silver badges49 bronze badges
5
|
1 Answer
Reset to default 1A hacky idea to use with caution (or to not use at all):
.list-panel {
display: flex;
overflow: hidden;
width: 300px;
gap: 8px;
border: 10px solid #0000;
background: skyblue;
margin: 10px;
}
.item {
background: lightcyan;
}
.list-panel:after {
content:" ... ";
background: red;
padding-inline: 5px;
position: sticky;
right: 0;
}
/* the last item will have a big overflow coloration
that will hide the pseudo element but the pseudo element
will be visible if we have a lot of items because
the last item is no more visible
*/
.item:last-child {
z-index: 1;
border-image:
conic-gradient(skyblue 0 0)
0 1 0 0/0 100vw 0 0/0 100vw 0 0;
}
<div class="list-panel">
<span class="item">111111111111</span>
<span class="item">666666666666</span>
</div>
<div class="list-panel">
<span class="item">111111111111</span>
<span class="item">666666666666</span>
<span class="item">666666666666</span>
</div>
<div class="list-panel">
<span class="item">111111111111</span>
<span class="item">222222222222</span>
<span class="item">333333333333</span>
<span class="item">444444444444</span>
<span class="item">555555555555</span>
<span class="item">666666666666</span>
</div>
本文标签: htmlCSS How to let the user know that not all content fits in a flex containerStack Overflow
版权声明:本文标题:html - CSS: How to let the user know that not all content fits in a flex container - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743751244a2532687.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
will-overflow
property. ☺ – Paulie_D Commented 11 hours agoclip
: codepen.io/_-0-_/pen/zxYbOvQ Unfortunately I couldn't find a way to move it up... – Kaiido Commented 5 hours ago