0
CSSコード:どのように左のセルに画像を置くのですか?
#wrapper {margin:auto; width:100%;}
.container {display: table; width:100%;}
.row {display: table-row;}
.cell {display: table-cell; height: 100px;}
#fixed {width:150px;}
HTMLコード:
<div id="wrapper">
<div class="container">
<div class="row">
<div class="cell" id="fixed">left cell</div>
<div class="cell">right cell</div>
</div>
</div>
</div>
私は左のセルに画像を置くだろうか?画像が幅150ピクセル、高さ100ピクセルであるとします。
を意味している場合! –