我想在表格中添加一些输入以满足对齐需要。但是这种风格不起作用并停止了。我如何将 td 添加到这种 css 样式中。例如,像这样:
<p>Stuff you like:</p>
<table>
<tr>
<td>
<label for="css3">CSS3</label>
</td>
<td>
<input type="checkbox" value="css3" id="css3" />
</td>
</tr>
</table><!-- It does not work-->
<p><input type="checkbox" value="HTML5" id="html5" />
<label for="html5">HTML5</label></p>
<p><input type="checkbox" value="JavaScript" id="javascript" />
<label for="javascript">JavaScript</label></p>
<p><input type="checkbox" value="Other" id="other" />
<label for="other">Other</label></p>
<!--But it work-->
/*CSS*/
input:hover + label, input:focus + label,
input + label:hover, input:focus + label{
text-shadow: 1px 1px 3px #000;
color: #2C7AD0;
}