实用的css代码片段

/*文本选择高亮效果*/
::selection{ background: red;}
::-moz-selection{ background: red;}
::-webkit-selection{ background: red;}

 

/*锚链接伪类的设置*/
a:link{ color: blue;}
a:visited{ color: purple;}
a:hover{ color: red;}
a:active{ color: yellow;}

 

/*全屏背景*/
html{
    background: url(bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

 

你可能感兴趣的:(css总结)