我的布局包含一行有三列。
左右应该与其内容一样宽。宽度的其余部分应由标题列占用。所有列的总宽度绝不应宽于父级。
所有列应该只有一行内容,没有换行符。
如果标题栏的内容不符合约束条件,则应在末尾添加省略号字符。
所有这些都适用于Chrome和Edge,但IE拒绝缩小标题列,以使列适合其父级宽度。
html,
body {
width: 100%;
margin: 0;
}
.row {
display: -ms-flexbox;
display: flex;
/* https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */
width: 200px;
}
[class*='cell-'] {
-ms-flex: 0 0 auto;
flex: 0 0 auto;
/* https://css-tricks.com/flexbox-truncated-text/ */
min-width: 0;
}
.cell-left {
background: red;
}
.cell-title {
white-space: nowrap;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
}
.hover {
overflow-x: hidden;
text-overflow: ellipsis;
position: relative;
padding-right: 1em;
}
.chevron {
position: absolute;
right: 0;
}
.hover:hover {
background: green;
}
.cell-right {
background: yellow;
margin-left: auto;
}
<div class="row">
<div class="cell-left">Left</div>
<div class="cell-title">
<div class="hover">Pellentesque habitant morbi tristique senectus et netus et malesuada<span class="chevron">^</span></div>
</div>
<div class="cell-right">Right</div>
</div>
答案 0 :(得分:1)
IE 10/11需要在中间项目上指定宽度。对代码进行此调整
.row {
display: flex;
width: 200px;
}
.cell-title {
width: 100%;
min-width: 0;
display: flex;
}
.hover {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.cell-title::after {
content: '^';
padding-left: 5px;
margin-right: auto;
}
.hover:hover { background: green; }
.cell-left { background: red; }
.cell-right { background: yellow; }
html, body { margin: 0; }
<div class="row">
<div class="cell-left">Left</div>
<div class="cell-title">
<div class="hover">Pellentesque habitant morbi tristique senectus et netus et malesuada</div>
</div>
<div class="cell-right">Right</div>
</div>