Files
ClassContent/历届学生/fontendsix/项目练习/上课项目/rem案例/css/clear.css
2024-09-27 02:06:13 +08:00

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;
}