CSS 对齐问题

发布于 2024-12-05 16:40:16 字数 316 浏览 1 评论 0原文

Explanatory Image

抱歉,如果这是一个简单的解决方案,但我的大脑今天似乎不工作,我就是无法使其正常工作。

问题:我正在尝试一种带有 2000 像素标头的新设计,可以在较大的显示器上呈现横向效果。

然而,当我在较小的显示器上查看设计时,整个标题 div 偏离中心,因此无法看到某些菜单。

内容 div 显然位于显示器的中心,但是我似乎无法找到解决方案来确保它与标题 div 的中心对齐。

我附上了一张图片来帮助解释这种情况。

Explanatory Image

Apologies if this is a simple solution, but my brain doesnt seem to be working today and I just can't seem to get this to work properly.

Issue: I'm trying a new design with a 2000px header that allows for a landscape feel across the larger monitors.

However when I view the design on a smaller monitor the entire header div is moved off centre, and therefore some menus aren't available to be seen.

The content div is obviously staying at the centre of the monitor, however I cant seem to find a solution to make sure it's aligned with the centre of the header div.

I've attached an image to help explain the situation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

妖妓 2024-12-12 16:40:16

试试吧,

HTML

<div id="container">
<div id="header"></div>
<div id="content"></div>
</div>

CSS

#container{
width:1920px; //any other value.
margin:0 auto;
}

Just Try,

HTML

<div id="container">
<div id="header"></div>
<div id="content"></div>
</div>

CSS

#container{
width:1920px; //any other value.
margin:0 auto;
}
隐诗 2024-12-12 16:40:16

我假设你的图像CSS将其放置在左上角,只需将其移动到顶部中间[或者是中心],你应该没问题。

所以背景:url(...)不重复顶部中心

I would assume your css for the image is placing it top left just move that to top middle[or is it center] and you should be ok.

so background: url(...) no-repeat top center

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文