我需要为div元素menu
设置填充,但我希望将其大小保持为其容器的10%。
从我的示例中可以看出,menu
遍历包装器。
我想知道如何修复它,将menu
保持在100%(我可以使用calc)以及为什么问题出在首位。感谢。
#wrapper {
width: 500px;
height: 500px;
background-color: red;
}
#menu {
width: 100%;
height: 50px;
background-color: orange;
display: flex;
justify-content: space-between;
align-items: center;
padding-left:75px; // problem here
}
.item {
width: 50px;
height: 50px;
background-color: gray;
}

<div id="wrapper">
<div id="menu">
<div class="item">a
</div>
<div class="item">a
</div>
<div class="item">a
</div>
</div>
</div>
&#13;
答案 0 :(得分:4)
您可以添加box-sizing
属性。
默认值为content-box
,其中仅包含元素width
和height
。 border-box
还包含padding
和border
属性。
说明我将其包含在代码段here中的方式。
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
#wrapper {
width: 500px;
height: 500px;
background-color: red;
}
#menu {
width: 100%;
height: 50px;
background-color: orange;
display: flex;
justify-content: space-between;
align-items: center;
padding-left:75px; // problem here
}
.item {
width: 50px;
height: 50px;
background-color: gray;
}
<div id="wrapper">
<div id="menu">
<div class="item">a
</div>
<div class="item">a
</div>
<div class="item">a
</div>
</div>
</div>