Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在设计一个放置两个单选按钮的表单。我想增加 HTML 中单选按钮的高度和宽度。
我在 iOS 上取得了成功,但在 Android 上我没有得到任何解决方案。
您不能在 Android 中更改单选按钮的高度,因为单选按钮是一个内置控件组件,因此它的大小是固定的。
我发现您可以使用 CSS3 属性来缩放单选按钮transform。
transform
例如,您可以这样做:-webkit-transform: scale(5);.
-webkit-transform: scale(5);
在 xml 文件中更改高度和宽度不会改变任何内容,因此您无法更改单选按钮或复选框的高度宽度,但解决方案是您可以自定义它们
点击此链接可以帮助您创建自定义单选或复选框
自定义单选按钮