現在、<div>
を2つ並べてheight
と正確に一致させる問題があります。私がそれらを同じにする必要があるのは、height
です。<div>
にはclass
が含まれており、中断することなく参照する必要があります。left-vertical border
が適用されます。左の<div>
が縦に拡張されても右のものは拡張されない場合、vertical border
は<div>
の行の間の縦のギャップの長さを実行しません。隣り合った高さが一致していない部分がある
display: table
,display: table-row
およびdisplay: table-cell
を使用して、複数のソリューションを試しました。以下の設定を見ることができます。
私たちの主な関心事は、画像に見られるように、我々は、ギャップを残さないように継続的に実行しているvertical border
を保っています。 Vertical Gap Image
またvertical border
色に等しいbackground color
を設定し、基本的にmargin
とborder
の作成について考えました。
上記の文書全体は、ほとんど同じように、CSS
で作成され、テーブルはありません。ここでは、大きな書き換えを必要としないソリューションを見つけることを望んでいます。
ありがとうございました!フロート退治
関連するコード
.column2,
.column3 {
float: left;
margin-bottom: 30px;
}
.column2 {
width: 45%;
margin-bottom: 0 !important;
padding-top: 3px;
padding-bottom: 3px;
}
.column3 {
width: 30.7%;
}
.column2,
.column3 {
min-width: 190px;
padding-left: 20px;
}
.column2:first-of-type,
.column3:first-of-type {
padding-left: 0;
}
.left-vertical-border {
border-left: 1px solid #BFB9B9;
height: 100%;
}
.table-wrapper {
display: table;
padding-left: 20px;
width: 100%;
}
.table-row-wrapper {
display: table-row;
}
.table-cell {
display: table-cell;
}
<div class="table-wrapper">
<div class="table-row-wrapper">
<div class="column2 table-cell">question text</div>
<div style="display: table-cell;" class="column2 left-vertical-border">textanswer text answer</div>
</div>
</div>
<div class="table-wrapper">
<div class="table-row-wrapper">
<div class="column2 table-cell">question textquestion textquestion textquestion textquestion textquestion textquestion textquestion text</div>
<div class="column2 left-vertical-border table-cell">textanswer text answer</div>
</div>
</div>
<div class="table-wrapper">
<div class="table-row-wrapper">
<div class="column2 table-cell">question text</div>
<div class="column2 left-vertical-border table-cell">textanswer text answer</div>
</div>
</div>
を達成します自然、なぜ単に 'table'要素を使うのではないでしょうか? –
外部リンクのコードが期限切れになることがあるので、あなたの質問に関連するコードを入力してください。 –
本当にあなたの質問を編集し、フィドルからhtml&cssでスニペットを作成する必要があります。あなたのコードは簡単です。 –