Question:
老人們嫌checkbox太小顆,要放大一些比較方便操作
Solve:
HTML:
<input type="checkbox" /><span>選我選我</span>
CSS方法一:
input[type=checkbox] {
zoom: 200%;
}
CSS方法二:
input[type=checkbox] {
-ms-transform: scale(2); /* IE */
-moz-transform: scale(2); /* FireFox */
-webkit-transform: scale(2); /* Safari and Chrome */
-o-transform: scale(2); /* Opera */
}
<input type="checkbox" /><span>選我選我</span>
CSS方法一:
input[type=checkbox] {
zoom: 200%;
}
CSS方法二:
input[type=checkbox] {
-ms-transform: scale(2); /* IE */
-moz-transform: scale(2); /* FireFox */
-webkit-transform: scale(2); /* Safari and Chrome */
-o-transform: scale(2); /* Opera */
}
0 意見:
張貼留言