Skip to content

Latest commit

 

History

History
executable file
·
13 lines (7 loc) · 396 Bytes

radioSize.md

File metadata and controls

executable file
·
13 lines (7 loc) · 396 Bytes

uni-app中设置radio和switch的大小

github地址,喜欢的可以star下哦

由于radio和switch组件不支持width和height属性设置,所以使用transform属性可解决大小问题

<radio style="transform: scale(0.7)" />

<switch style="transform: scale(0.7,0.7)" />