0
私が望んでいたのは、実際には省略記号で切り捨てられた方が長くても1行または2行までのテキストを持つことでした。それは表示されませんでした.divの中に2行以上のテキストがある場合、何らかの理由でボックスがジャンプしています。テキストを折り返してdivボックスが上に移動するのはなぜですか?
body {
background-color: transparent;
overflow-y: hidden;
margin: 0;
}
div {
font-size: 20px;
text-overflow: ellipsis;
}
.container {
white-space: nowrap;
overflow-x: hidden;
overflow-y: hidden;
font-size: 0;
height: 100vh;
}
.row {
white-space: nowrap;
overflow-x: hidden;
font-size: 0;
background-color: cyan;
}
.cell {
display: inline-block;
white-space: normal;
width: 200px;
height: 200px;
background-color: lime;
margin: 5px;
padding: 0px;
z-index: -1;
}
.cellDummy {
display: inline-block;
white-space: normal;
height: 200px;
background-color: blue;
margin: 0px;
padding: 0px;
z-index: -1;
}
<div class="container">
<div class="row" id="row0">
<div class="cellDummy" style="width: 740.5px;">boo</div>
<div class="cell">1 ahsdjkha sdjha kshd kajhs dajhsdk</div>
<div class="cell">2</div>
<div class="cell">3</div>
</div>
</div>
そこで質問でも、テキストの2行で.cell
ボックスをラインアップする方法ですか?テキストが2行(またはボックスの高さの約10%)に収まらない場合は省略記号をどうやって作るのですか?
更新 垂直アラインメントを変更した後、.cellDummy
ボックスが上に移動します。
今、私の '.cellDummy'がジャンプします... – Pablo
テキスト省略記号の場合、私は' .cell'で固定高さを占める内側divまたはspanが必要でしょうか? – Pablo
あなたの '.cell' divにあなたの.cellDummyにはない余白があります。そして、はい、あなたは、省略記号がキックインするための高さを定義する必要があります。 – j08691