作为一个简单的例子,我有两个非常简单的div:
(绿色的是红色的)
现在我如何从绿色div的底部和顶部减去20个像素?
HTML:
CSS:
#container {
width: 200px;
height: 300px;
background: red;
}
#rows {
width: 50%;
height: 100%;
/* margin-top: 20px;
margin-bottom: 20px; */
/* padding-top: 20px;
padding-bottom: 20px; */
/* top: 20px;
bottom: 20px;
height: auto; */
background: green;
}
最佳答案
原文链接:https://www.f2er.com/html/426885.html