您的位置:首页 > Web前端 > CSS

css3复选框

2015-07-29 14:50 169 查看
</head>
/*input[type="checkbox"]:checked{outline:2px solid #FC3;}当鼠标选中添加边框变幻颜色*/
<style>
input[type="checkbox"]:checked{
outline:2px solid #FC3;}
</style>

<body>
<input type="checkbox" />阅读
<input type="checkbox" />旅游
<input type="checkbox" />上网
<input type="checkbox" />看电影
<input type="checkbox" />游戏
</body>
</html>

展示的效果

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: