gpt4 book ai didi

html - 为什么我的标题不向右滚动?

转载 作者:太空宇宙 更新时间:2023-11-04 14:08:26 24 4
gpt4 key购买 nike

我只是制作一个简单的标题,一个带有此 css 的 div 元素:

.header

{
position: absolute;
width: 1000px;
height: 50px;
background: #000000;
left: 50%;
top: 0px;
margin: 0 0 0 -500px;
}

一切都很完美,但是当我将窗口调整为小于 1000 像素的宽度时,会出现一个滚动条(就像它应该的那样),但我无法向左滚动。因此,我的标题的一部分未显示且无法滚动到。

最佳答案

您正在经历的实际上是正确的行为,因为您正在居中header 使用负 margin-left。您可以使用 margin:0 auto 水平居中显示它,而不是您当前的方法:

header {
display:block;
width:1000px;
margin:0 auto;
}

确保删除 position:absolute

Fiddle

关于html - 为什么我的标题不向右滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20956981/

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