0

我面临以下链接中发布的相同问题。但这个答案对我不起作用。

单选按钮文本对齐问题

此对齐问题仅在 safari、chrome 和 firefox 中发生

代码:

<asp:RadioButton ID="StorageRadio" GroupName="FormatRadios" 
 TextAlign="Right" Text="Export for storage" runat="server" />
4

1 回答 1

1

我通过添加以下样式得到了解决方案

代码:

label, input[type="radio"] 
{
  font-size: 12px;
  vertical-align: middle;
  margin-top: -1px;
}
于 2013-01-03T09:57:59.460 回答