标签: asp.net html css spacing
我有以下代码<asp:RadioButton runat="server" Text="Male"></asp:RadioButton> 我想要单选按钮和单选按钮文本之间的间隙,我在文本字段(前缀为空格)Text=" Male"中进行了以下更改。但是,我觉得这不是最有效的方法。一个更好的出路?
<asp:RadioButton runat="server" Text="Male"></asp:RadioButton>
Text=" Male"
答案 0 :(得分:7)
使用CSS:
input[type="radio"] { margin-right: 5px; }