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;
用来显示页面居中。但是这样一来,顶部固定的 div 就不遵守 500px 中间规则了。
我希望它像全身内容一样固定在中心。
我尝试使用*{margin:0 auto; max-width: 500px;}
和其他一些更改,但没有得到我想要的。