欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CSS知识记录点滴

程序员文章站 2022-07-15 16:03:00
...

 

1. 元素无法选择

 

 

-webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;

 

2. Color   颜色

 

3. text-decoration 字体修饰

 

h1 {text-decoration:overline}
h2 {text-decoration:line-through}
h3 {text-decoration:underline}
h4 {text-decoration:blink}