2022-09-22 DIV的margin-top失效

错误页面,10像素外边距没有作用

文档说明:


文档说明

改正代码

body {
    margin: 0 !important;
}
.d1 {
    margin: 0;
    background-color: red;
    height: 20px;
}
.d2 {
    margin: 10px;
    height: 30px;
    background-color: gray;
    display: block;
}

解决问题


解决问题

你可能感兴趣的:(2022-09-22 DIV的margin-top失效)