28 lines
303 B
CSS
28 lines
303 B
CSS
/* 清楚浏览器默认样式 */
|
|
|
|
ul,li,p,h1,h2,h3,h4,h5,h6,body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background: #eeeef3;
|
|
font-size: 0;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 0.9rem;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
input {
|
|
outline: none;
|
|
border: none;
|
|
} |