You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
223 B
CSS
14 lines
223 B
CSS
|
1 month ago
|
/* 清除默认边距 */
|
||
|
|
html,
|
||
|
|
body {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
overflow-x: hidden;
|
||
|
|
/* 防止水平滚动 */
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 移除所有元素的默认边距 */
|
||
|
|
* {
|
||
|
|
box-sizing: inherit;
|
||
|
|
}
|