gpt4 book ai didi

CSS - 溢出滚动和右填充被忽略

转载 作者:行者123 更新时间:2023-11-27 23:11:43 24 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<style>
.d1 {
background-color: lightblue;
display: flex;
overflow: scroll;
padding: 10px;
}
.d2 {
background-color: yellow;
margin: 5px;
}
</style>
</head>
<body>

<div class="d1">
<div class="d2">111111111111111111111</div>
<div class="d2">111111111111111111111</div>
<div class="d2">111111111111111111111</div>
<div class="d2">111111111111111111111</div>
</div>

</body>
</html>

在这个简单的例子中,我在父级 div 上使用了 padding ,在 child 上使用了 margin 但是有容器的最右边没有paddingmargin...我该如何解决这个问题?泰

最佳答案

试试这个

<!DOCTYPE html>
<html>
<head>
<style>
.d1 {
background-color: lightblue;
display:inline-flex;
overflow: auto;
padding: 10px;
}
.d2 {
background-color: yellow;
margin: 5px;
}
</style>
</head>
<body>

<div class="d1">
<div class="d2">111111111111111111111</div>
<div class="d2">111111111111111111111</div>
<div class="d2">111111111111111111111</div>
<div class="d2">111111111111111111111</div>
</div>

</body>
</html>

关于CSS - 溢出滚动和右填充被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58478596/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com