gpt4 book ai didi

html - 指定固定和最大主体宽度时的 Div 对齐

转载 作者:行者123 更新时间:2023-11-28 12:07:56 25 4
gpt4 key购买 nike

body {
margin:0 auto;
max-width: 500px;
}

.div{
text-align:left;
position: fixed;
top 0;
width: 100%;
z-index: 1;
display: block;
height: 32px;
}

我的主体宽度最大为 500 像素,我使用 margin:0 auto; 来显示页面居中。但是这样一来,top fixed div就不再遵守500px middle rule了。
我希望它像整个 body 内容一样固定在中心。
enter image description here
我尝试使用 *{margin:0 auto; max-width: 500px; 和其他一些更改,但没有得到我想要的。

最佳答案

在这种情况下你不必给你的 body 最大宽度试试这个:

<body>
<div id="container">

<!--place your div-->
</div>
</body>

CSS:

#container {margin:0 auto; max-width: 500px;}

当你把你的 div 放在容器中时,它们会遵循最大宽度规则

关于html - 指定固定和最大主体宽度时的 Div 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19629696/

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