需要增加单选按钮的大小

时间:2013-11-15 22:04:24

标签: asp.net-mvc-3 jquery-mobile

我正在使用MVC 3和jQuery mobile。手机浏览器上的按钮太小了。我尝试了不同的属性,但似乎没有任何工作。这是我的代码:

<div data-role="radio">    
  @HTML.RadioButtonFor(model => model.ButtonLabel)
</div>

任何想法将不胜感激!

谢谢!

1 个答案:

答案 0 :(得分:0)

<div data-role="radio">    
  @HTML.RadioButtonFor(model => model.ButtonLabel,true, new { @style = "margin: 1em 1em 1em 0;transform: scale(1.1, 1.1);-moz-transform: scale(1.1, 1.1);-ms-transform: scale(1.1, 1.1);-webkit-transform: scale(1.1, 1.1);-o-transform: scale(1.1, 1.1);"})
</div>

真是radiobutton的值。当然会有第二个radiobutton,它将具有错误值。或者另一种方式是你可以用上面的css创建类并将该类应用于像@ class =“class_radio”这样的无线电按钮。比例增加你单选按钮的大小。

希望有所帮助