博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
input radio单选框样式优化
阅读量:6801 次
发布时间:2019-06-26

本文共 983 字,大约阅读时间需要 3 分钟。

  HTML代码:

  

1 
2
3
4
5
水果 6
7
8
9
10
饮料11
12

 

 

  css代码:

  

1 div { 2   position: relative; 3   line-height: 30px; 4 } 5  6 input[type="radio"] { 7   width: 20px; 8   height: 20px; 9   opacity: 0;10 }11 12 label {13   position: absolute;14   left: 5px;15   top: 8px;16   width: 20px;17   height: 20px;18   border-radius: 50%;19   border: 1px solid #999;20 }21 22 /*设置选中的input的样式*/23 /* + 是兄弟选择器,获取选中后的label元素*/24 input:checked+label {25   background-color: #006eb2;26   border: 1px solid #006eb2;27 }28 29 input:checked+label::after {30   position: absolute;31   content: "";32   width: 5px;33   height: 10px;34   top: 3px;35   left: 6px;36   border: 2px solid #fff;37   border-top: none;38   border-left: none;39   transform: rotate(45deg)40 }

 

  效果图:

  

 

转载于:https://www.cnblogs.com/nelsonlei/p/7878154.html

你可能感兴趣的文章
Linux ssh connection time setting
查看>>
Python入门(七) dict
查看>>
HTML5-GPS定位
查看>>
JavaSE——数组集合
查看>>
Git远程仓库
查看>>
java的LookupDispatchAction 用法
查看>>
多目标决策---化多为少的方法
查看>>
libevent 一个简单的event示例
查看>>
莫名故障
查看>>
Struts秘籍之第1段:第2.2式:关于标签库声明
查看>>
vscode cpp cmake 环境搭建
查看>>
android sdk manager无法更新
查看>>
ArrayIndexOutOfBoundsException数组越界问题 --- 之一
查看>>
XMPP协议学习笔记
查看>>
[转]Golang的正则表达式
查看>>
秋色园QBlog技术原理解析:UrlRewrite之URL重定向体系(四)
查看>>
Silverlight+WCF 简单部署问题集
查看>>
编译Hadoop Eclipse Plugin
查看>>
Java线程安全单例模式实现
查看>>
HOOK API 相关
查看>>