博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改系统默认样式
阅读量:5227 次
发布时间:2019-06-14

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

 

\small -webkit-appearance  可以去除浏览器默认样式,但却是一个不规范的属性(unsupported WebKit property),

它没有出现在 CSS 规范草案中,此属性非标准且渲染效果在不同浏览器下不同,有些属性值甚至不支持,请慎用。

input[type="range"] {    -webkit-appearance: none;    width: 100%;    margin: 0;    background: transparent;}input[type="range"]:focus {    outline: none;}/*滑道*/input[type="range"]::-webkit-slider-runnable-track {    background: transparent;    border: none;}/*滑块*/input[type="range"]::-webkit-slider-thumb {    -webkit-appearance: none;    width: 12px;    height: 12px;    border-radius: 50%;    margin-bottom: 15px;    background-color: transparent;    box-shadow: 0 0 0 3px white, 0 1px 3px 3px rgba(5, 10, 70, 0.33);}

/*滑道*/::-webkit-scrollbar-track{    border-radius: 10px;    background-color: #fff;    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);}/*滑动条*/::-webkit-scrollbar{    width: 7px;    background-color: #fff00;}/*滑块*/::-webkit-scrollbar-thumb{    border-radius: 10px;    background-color: #b3b3b3;        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);    /*background:linear-gradient(to bottom,red,#ffe607,#fffa04,#0fff4e,#00a1ff,#ef00ff); */}

input[type="radio"] {            appearance: none;            -webkit-appearance: none;            outline: none;            margin: 0;        }        input[type="radio"]:after {            display: block;            content: "";            width: 12px;            height: 12px;            background: #fff;            border-radius: 50%;            border: 2px solid #bfbfbf;        }        /*已选择*/        input[type="radio"]:checked:after {            background: #0593d3;            border: 2px solid #fff;        }

                                                                                                                                                                \small \small By\ \ Nidhogg\cdot D\cdot Joking

转载于:https://www.cnblogs.com/NidhoggDJoking/p/10547451.html

你可能感兴趣的文章
Spring 框架获取 datasource对象的方法
查看>>
没有预热,这不叫高并发,叫并发高
查看>>
Virtual DOM 系列三:Diff算法
查看>>
数据结构之栈与队列
查看>>
时间与时间戳互换
查看>>
rhel7.6上安装Oracle 19.2.0.0 RAC
查看>>
10个关于Android开发的实用教程
查看>>
数据库事务的四大特性以及事务的隔离级别
查看>>
软件研发网站收集
查看>>
C# 中HttpClient的使用中同步异步问题
查看>>
改动Android启动画面
查看>>
1002.写出这个数
查看>>
[BZOJ1316]树上的询问 点分治
查看>>
[转]Go与C语言的互操作
查看>>
Fatal NI connect error 6413的解决办法 http://www.itpub.net/thread-107518-1-1.html
查看>>
博客园首页新随笔联系管理订阅 随笔- 524 文章- 0 评论- 20 hdu-5810 Balls and Boxes(概率期望)...
查看>>
freemarker自定义标签的写法和使用
查看>>
LeetCode - 21. Merge two sorted lists
查看>>
LAMP--源码MySQL集群版搭建
查看>>
C# partial 局部类型
查看>>