** VB.NET 2010,ASPNET * * * ****
您好,
有没有办法将单选按钮文本设置为居中, 我想把它显示在radiobutton hole的顶部..谢谢
答案 0 :(得分:2)
文本和单选按钮是分开的,因此您可以按照自己喜欢的方式设置样式。例如:
HTML:
<label class="CenteredRadio">
<span>Click me</span>
<input type="radio" name="group" value="yes" />
</label>
CSS:
.CenteredRadio { width: 300px; }
.CenteredRadio span { display: block; text-align: center; }
.CenteredRadio input { display: block; text-align: center; }
如果您使用RadioButton
控件,请将其文本设置为空字符串,然后您可以使用自己的文本。
答案 1 :(得分:1)
将Text
的{{1}}设置为RadioButton
。在其顶部添加String.Empty
。