码迷,mamicode.com
首页 > Web开发 > 详细

css实现radio选中效果

时间:2015-03-13 16:08:06      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:

html代码:

  

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>span-css模拟radio</title>
    <style type="text/css">
        #wrap{
            width: 500px;
            height: 500px;
            margin: 50px auto;
        }
        label input{
            display: none;        
        }
        label span{
            display: inline-block;
            width: 20px;
            height: 20px;
            background: url(../img/radio.png) no-repeat 0 0;
            background-position: -55px -5px;
        }
        label input:checked+span{
            background-position: -5px -5px;
        }
    </style>
</head>
<body>
    <div id="wrap">
        <label>
            <input type="radio" value="meal" name="sex">
            <span></span></label>
        <label>
            <input type="radio" value="femeal" name="sex">
            <span></span></label>        
    </div>
    
</body>
</html>

技术分享

css实现radio选中效果

标签:

原文地址:http://www.cnblogs.com/sdufewind/p/4335007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!