CheckboxList 要显示对齐吗?
我做了一个 CheckboxList,它不会排队。我没有看到任何方法来控制生成的 HTML。现在,由于每个复选框标签的 宽度是自动宽度,因此复选框不会对齐。如何设置其宽度并使所有标签和复选框出现在两个垂直对齐的列中?
我的代码很简单:
<div style="text-align: center;">
<p>
Here you will tell..
</p>
<asp:CheckBoxList runat="server" ID="cbl" Width="300px"></asp:CheckBoxList>
<br />
<input type="button" id="next_3" value="Next Page" />
</div>
这是一个屏幕截图
I made a CheckboxList and it will not line up. I don't see any way to control the generated HTML. Right now, the check boxes do not align due to the widths of the <td>
of each checkbox label being an automatic width. How can I set the width of this and make all the labels and checkboxes appear in two vertical aligned columns?
My code is simple:
<div style="text-align: center;">
<p>
Here you will tell..
</p>
<asp:CheckBoxList runat="server" ID="cbl" Width="300px"></asp:CheckBoxList>
<br />
<input type="button" id="next_3" value="Next Page" />
</div>
And here is a screen shot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以将其包含在另一个进行左对齐的
中,如下所示:
You can have it contained within another
<div>
that does left-aligning like so:只需将以下内容添加到您的复选框列表中即可
Just add the following to your checkboxlist
不使用DIV和其他元素以及固定大小。
我们可以通过设置“对齐复选框列表文本”
“float:left”为复选框列表输入类型
在 CSS 中
Without using DIV and other elements and fixed sizes.
We can "align checkboxlist text by Setting
"float:left" to the checkbox list input type
in Css
也许我不明白你的问题,但对我来说这很好:
如果你可以链接到或显示你的 HTML,也许我们可以给你更多帮助。
Maybe I don't understand your question, but for me this works fine:
If you can link to or show your HTML, maybe we can give you more help.