如何让div垂直居中?

发布于 2024-10-06 10:13:45 字数 83 浏览 5 评论 0原文

我想将我的主要内容 div 垂直居中。我愿意使用 jQuery 和/或 CSS,但我更愿意避免额外的包装 div 标签。

我需要做什么?

I would like to vertically center my main content div. I am open to using jQuery and/or CSS, but I'd prefer avoiding an extra wrapper div tag.

What do I need to do to do?

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

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

发布评论

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

评论(2

离笑几人歌 2024-10-13 10:13:45

jQuery:

$(document).ready(function() {
    $('#main').css('position', 'relative');
    $('#main').css('top', (($('#main').parent().height() - $('#main').height()) / 2) + "px");
});

jQuery:

$(document).ready(function() {
    $('#main').css('position', 'relative');
    $('#main').css('top', (($('#main').parent().height() - $('#main').height()) / 2) + "px");
});
掩饰不了的爱 2024-10-13 10:13:45

这个问题基本上与 这个,推荐下面的文章。

http://www.jakpsatweb.cz/css/css-vertical-中心解决方案.html

This question is basically the same as this one, which recommends the following article.

http://www.jakpsatweb.cz/css/css-vertical-center-solution.html

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