在this table,不僅僅是小區B的標題和內容,但也細胞A和C.使用的DIV內表細胞
我試圖設置標題和使用的DIV的內容只是部分成功。觀察到font-weight
,但vertical-align
不是。爲什麼?
CSS
<style type="text/css">
td {
text-align: left;
}
.heading {
vertical-align: top;
font-weight: bold
}
.content {
vertical-align: middle;
}
</style>
HTML
<table width="300px" height="300px" border="1">
<tr>
<td rowspan="2">A</td>
<td>
<div class="heading">Heading of Cell B</div>
<div class="content">Content of Cell B</div>
</td>
</tr>
<tr>
<td>C</td>
</tr>
</table>
verticle對齊應該是中間 – ryan0319
表是對錶格數據並應正確使用,如果你不打算正確地佈局你的數據,那麼你不應該打擾他們 – Pete