单选按钮列表 - 小文本对齐问题?

发布于 2024-12-12 11:12:36 字数 226 浏览 2 评论 0原文

我有一个单选按钮列表,其中有这样的按钮: http://imageshack.us/f/545/capture1jtr.png/

但是,我注意到一个小对齐问题..我希望第二行文本位于“单选按钮的圆圈”之后...我该怎么做?

我完全不知道!

S

I have a radio button list that has buttons like this:
http://imageshack.us/f/545/capture1jtr.png/

However, I notice a small alignemnt issue .. I want the second line of text to be after the "radio button's circle" ... How do I do this ??

I have absolutely no idea!

S

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅黛梨妆こ 2024-12-19 11:12:36

在 css 中尝试一下

<style type="text/css">
 table.radioButton input
 {    
      float: left;
 }

 table.radioButton label
 {    
      margin-left: 25px;
      display: block;
 }
</style>

在 .aspx 中

<asp:RadioButtonList runat="server" CssClass="radioButton" ....>

Give this a try in the css

<style type="text/css">
 table.radioButton input
 {    
      float: left;
 }

 table.radioButton label
 {    
      margin-left: 25px;
      display: block;
 }
</style>

And the in the .aspx

<asp:RadioButtonList runat="server" CssClass="radioButton" ....>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文