【发布时间】:2014-04-01 13:09:29
【问题描述】:
在 IE9 中,宽度似乎没有应用于我的 tbody,见下文和this fiddle
<table>
<tbody>
<tr>
<td class="label"><label for="l_name">Name</label>:</td>
<td class="value"><input type="text" name="l_name" value="" id="l_name"></td>
</tr>
</tbody>
</table>
<style>
table {
background: none repeat scroll 0 0 #FFFFFF;
text-align: center;
width: 100%;
}
tbody {
background: none repeat scroll 0 0 red;
display: inline-block;
width: 360px;
}
</style>
我在这里做错了什么?
【问题讨论】:
标签: html css internet-explorer internet-explorer-9