css样式

68 阅读1分钟

文本选中样式:

p::selection {
                    color: red;
                    background: green;
                }

只能向 ::selection 选择器应用少量 CSS 属性:color、background、cursor 以及 outline

黑白界面:

html{ 
   filter: grayscale(100%); 
}
//如果考虑浏览器兼容的话
html{ 
   -webkit-filter: grayscale(100%); 
   -moz-filter: grayscale(100%); 
   -ms-filter: grayscale(100%); 
   -o-filter: grayscale(100%); 
 }

镜像效果:

.below {
  -webkit-box-reflect:below
}