CSS链接样式

来源:互联网 发布:wps官方下载 mac版 编辑:程序博客网 时间:2024/05/29 10:59

未访问链接:a:link{color:red;}

已访问链接:a:visited{color:blue;} 

鼠标移动到链接上:a:hover{color:pink;}

鼠标点击时:a:active{color:yellow;}


超链接在浏览器中默认是有下划线的,则删除下划线样式如下:

a:link {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:underline;}

a:active {text-decoration:underline;}


overflow 属性规定当内容溢出元素框时发生的事情:

hidden内容会被修剪,并且其余内容是不可见的。

.row_line {width: 100%;font-size: 1.4rem;overflow: hidden;background-color: white;}


clear 属性规定元素的哪一侧不允许其他浮动元素

清除左右浮动:

.box_help {margin: 2rem 1rem 1.5rem 1rem;border: 1px solid #E5E5E5;background: white left top repeat-x #FFF;clear: both;}







原创粉丝点击