37 lines
433 B
CSS
37 lines
433 B
CSS
/* 删除: 之前的样式 */
|
|
/* 添加重置CSS样式 */
|
|
html,
|
|
body,
|
|
div,
|
|
span,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
ul,
|
|
video {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
font-size: 100%;
|
|
font: inherit;
|
|
vertical-align: baseline;
|
|
box-sizing: border-box;
|
|
user-select: none; /* 添加: 禁止文字选中 */
|
|
}
|
|
|
|
body {
|
|
line-height: 1;
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
html::-webkit-scrollbar {
|
|
display: none;
|
|
} |