我有一个这样的 CSS 选择器
table[id^="tblBody_"] tbody tr td input[type="checkbox"]
{
margin-top:-3px;
}
HTML
<table id="tblBody_tblApplicationWizardPageDetail">
<tbody>
<tr>
<td>
<input id="chkDisplayedBit" type="checkbox"/>
</td>
</tr>
</tbody>
</table>
我必须将此css应用于表格ID开头的表格单元格中存在的复选框tblBody_
这个东西在 IE8 中运行良好,但在 IE10 中不行