移动端对radio和checkbox的样式调整

来源:互联网 发布:最新伤感歌曲 网络 编辑:程序博客网 时间:2024/06/06 09:40
<style>
*{padding: 0;margin: 0;-webkit-tap-highlight-color:rgba(0,0,0,0);outline:none;}
#checkbox{width:25px;height: 25px;-webkit-appearance: none;background: #ccc;}
#checkbox:checked{background: #ff0;}
.radiobox{width:25px;height: 25px;-webkit-appearance: none;background: #0ff;}
.radiobox:checked{background:#00f;}

</style>
</head>
<body>
 <div class="container">
    <input type="checkbox" id="checkbox"/> <br/>
    <input type="radio" class="radiobox" name="question"/>A <input type="radio" class="radiobox" name="question"/>B
 </div>
</body>
</html>
0 0
原创粉丝点击