CSS知识记录点滴

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}

相关推荐