this、W3 Schools、a stackoverflow page with similar problem私のテーブル(div内)は、ページの後半にある別のdivにインラインで表示されています。CSSで画面を分割する
私は左側にのみコンテンツがPHPでページを下に沈めることが右側にコンテンツが移入されたとして、それが左サイドを引き起こしている垂直分裂と私の画面を分割しようとしている
私はそれが整列の原因となっているコードの部分だと感じています。
ので、しかし、私はそれが落下し、左サイドを生じさせることなく、右側のdivにコンテンツを追加できるようにしたい、このようになります。
がコード:
.floating-box {
display: inline-block;
width: 45%;
height: 75px;
margin: 0px;
border: 1px solid #73AD21;
}
<div class="floating-box">
<table>
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th>
<th>Column 4</th>
<th>Column 5</th>
<th>Column 6</th>
<th>Column 7</th>
<th>Column 8</th>
<th>Column 9</th>
<th>Column 10</th>
<th>Column 11</th>
<th>Column 12</th>
</tr>
</thead>
<tbody>
<?php foreach ($allArray as $key => $value) { ?>
<?php } ?>
</tbody>
</table>
</div>
<div class="floating-box">
<h2>Floating box</h2>
</div>
'vertical-align:top;'? –