我正在尝试将我的内容 div 居中。设置为 100%,div 包含在 body 中,body 也设置为 100%。我有一个 max-width: 1400px ,因为如果屏幕分辨率更高,我不希望我的内容拉伸得更多。问题是,它不能使用 margin: auto。我的内容位于左侧,在大于 1400 像素的屏幕上未居中。
如果我删除最大宽度,一切都完美地集中在宽屏幕上,但内容被拉伸到整个屏幕......
#content {
width: 100%;
height: auto;
position: absolute;
top: 400px;
margin: 0 auto;
margin-top: 50px;
display: none;
max-width: 1400px;
}