我正在嘗試使用css來設置td的寬度和高度。高度工作正常,寬度被忽略。我敢肯定,當我向他們展示答案時,這就是我要打擊自己的事情之一。我檢查了拼寫,嘗試了em和px,但寬度卻被忽略了。下面是一個小提琴一個鏈接顯示的問題:http://jsfiddle.net/kdubs/jBjr2/td忽略寬度但高度很高
的HTML
<div class="overall_theme">
<table id="disp_output">
<tbody>
<tr>
<th>Advantages</th>
<td id="disp_ads">00</td>
</tr>
<tr>
<th>Disadvantages</th>
<td id="disp_disads">0</td>
</tr>
<tr>
<th>Total</th>
<td id="disp_total">0</td>
</tr>
<tr>
<th>dbg</th>
<td id="dbg_td">txt</td>
</tr>
</tbody>
</table>
</div>
和CSS
.overall_theme table, .overall_theme tr, .overall_theme td, .overall_theme th {
text-align:center;
border-collapse:collapse;
border: 1px solid black;
width:2em;
}
.overall_theme table {
background-color:cornflowerblue;
margin-top:.5em;
margin-bottom:.5em;
}
.overall_theme > table > tbody > tr > td:nth-child(odd), .overall_theme th:nth- child(odd) {
background-color:#00cc00;
}
#disp_output td {
width:30em;
height:35px;
}
gah ......就是這樣。感謝您的其他提示。讓我感到困惑的是,Chrome調試器與2em的寬度一致,劃掉了,並且30em與單獨一致,所以它看起來好像是在試圖使用30em。 – kdubs