css学习笔记1

来源:互联网 发布:ubuntu debian 编辑:程序博客网 时间:2024/05/21 18:31

select清除默认的方式:

select {

 border: none;
  appearance:none;
  -moz-appearance:none;
  -webkit-appearance:none;
  padding-right: 14px;
}
/*清除ie的默认选择框样式清除,隐藏下拉箭头*/

select::-ms-expand { display: none; }


禁止html标签被选中:
{
moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}


DIV滚动条颜色属性样式外

::-webkit-scrollbar{width:14px;}
::-webkit-scrollbar-track{background-color:#bee1eb;}
::-webkit-scrollbar-thumb{background-color:#00aff0;}
::-webkit-scrollbar-thumb:hover {background-color:#9c3}
::-webkit-scrollbar-thumb:active {background-color:#00aff0}


图片变灰色:
{-webkit-filter: grayscale(100%);
 -moz-filter: grayscale(100%);
 -ms-filter: grayscale(100%);
 -o-filter: grayscale(100%);
 filter: grayscale(100%); 
 filter: gray;}










原创粉丝点击