作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的代码:
.container {
width: 100px;
margin: 0 auto;
padding: 0 10px;
background: red;
}
/* this is inside the container */
.inside {
width: 100%;
height: 100px;
background: blue;
margin: 0 -10px;
}
outcome
expected outcome
我究竟做错了什么?我见过 Bootstrap 网格做类似的事情。
快速更新。抱歉解释不当。进一步解释:
边距:0 -10px;用于向左侧和右侧添加边距,但右侧不执行任何操作。
最佳答案
对于.inside
,width: 100%
只覆盖.container
内边距的空间。您需要将额外的 20px 添加回其宽度:
.container {
width: 100px;
margin: 0 auto;
padding: 0 10px;
background: red;
}
/* this is inside the container */
.inside {
width: calc(100% + 20px);
height: 100px;
background: blue;
margin: 0 -10px;
}
<div class='container'>
<div class='inside'></div>
</div>
关于css - 为什么应用负 margin 权不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48217106/
我是一名优秀的程序员,十分优秀!