17 lines
270 B
CSS
17 lines
270 B
CSS
/* 专门用来清除标签的默认样式的 */
|
|
li {
|
|
list-style: none; /* 清除li标签的小圆点 */
|
|
}
|
|
|
|
a {
|
|
text-decoration: none; /* 清除a标签的下划线 */
|
|
}
|
|
|
|
body,ul,p,h1,h2,h3,h4,h5,h6{
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
input {
|
|
outline: none;
|
|
} |