Maison >interface Web >tutoriel HTML >如何让td中的checkbox左对齐??_html/css_WEB-ITnose
一个td,宽度是固定的,比如说是230px,高度可以伸缩,无所谓。
有N个 checkbox框 要显示在这个td里,checkbox后的显示字符长度也不确定,
比如说,有的是4个汉字,有的是2个汉字,等等。
该怎么弄,才能保障,checkbox都是左对齐的呢?
只需要在IE6中显示成左对齐即可。
我这实现了,2种方法,跟大家共有下。
方法1:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head> <title>Untitled</title> <style> label{ white-space:nowrap; } </style></head><body><table border=1> <tr> <td width="350px" style="layout-grid-type: strict;"> <label for='a1'><input id='a1' type="checkbox">さふぁ</label> <label><input type="checkbox">あsasあs化fdふぁ</label> <label><input type="checkbox">ふぁあdふぁsdふぁsふぁ</label> <label><input type="checkbox">あえr</label> <label><input type="checkbox">123123123123123123123123123123123123123123</label> <label><input type="checkbox">あdfさsdふぁ</label> <label><input type="checkbox">あsdふぁ</label> <label><input type="checkbox">ふぁふぁ</label> <label><input type="checkbox">あえあsdふぁsdfr</label> <label><input type="checkbox">aaaa</label> <label><input type="checkbox">さふぁ</label> <label><input type="checkbox">あsdふぁ</label> <label><input type="checkbox">ふぁふぁ</label> <label><input type="checkbox">あえr</label> </td> </tr></table></body></html>
<div style="width:200px;border:1px solid;"><span style="display:inline-block"><input type="checkbox" name="chkJobType" id="1" />你好中国中国中国</span><span style="display:inline-block"><input type="checkbox" name="chkJobType" id="2" />你</span><span style="display:inline-block"><input type="checkbox" name="chkJobType" id="2" />你中</span><span style="display:inline-block"><input type="checkbox" name="chkJobType" id="2" />你好中国中国中国中国中</span><span style="display:inline-block"><input type="checkbox" name="chkJobType" id="2" />你好</span></div>
我这实现了,2种方法,跟大家共有下。
方法1:
XML/HTML code?12345678910111213141516171819202122232425262728293031323334353637nbsp;HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
style="text-align:left" 设置样式不行吗