(HTML)写导航感悟

代码要规范,路径要写全

如:

.div1 ul li a:link {
text-decoration: none;
color: white;
}

.div1 ul li a:visited {
text-decoration: none;
color: white;
}
.div1 ul li a:hover {
font-size: larger;
}

当一个标签的属性有顺序冲突时,不妨将其中有问题的一个挑出来,在外面再套一个别的标签,在另外这个标签上改(属性两标签都有情况下)

如,在a标签外面套了个div,改div属性

.div2:hover {
height: 30px;
width: 50px;
background-color: #2C5B7A;
text-decoration: underline;
}

你可能感兴趣的:(html)