多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
~~~ <title>Document</title> <style> *{margin:0;padding:0} div{ margin:50px auto 0; width:400px; border:1px solid #333; text-align: center; } a,i{ display: inline-block; } a{ width:30px; height:30px; background: #333; border-radius: 50%; position: relative; } i{ width:18px; height:18px; background-image: url('images/icons_type.png'); position: absolute; margin:auto; top:0;left:0;bottom:0;right:0; } .qq{ background-position-x: -19px; } .weibo{ background-position-x: -38px; } .zhifu{ background-position-x: -57px; width:25px; } .weixin{ width:24px; background-position-x: -83px; } </style> </head> <body> <div class="form"> <a href="#"><i class="qq"></i></a> <a href="#"><i class="weibo"></i></a> <a href="#"><i class="zhifu"></i></a> <a href="#"><i class="weixin"></i></a> </div> </body> ~~~