使用 jQuery 水平和垂直居中填充的全角 DIV
只要 css 中没有填充或 100% 宽度,下面的代码就能神奇地使我的 div 居中:
jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop() + "px");
this.css("left", (($(window).width() - this.outerWidth()) / 2) + $(window).scrollLeft() + "px");
return this;
}
$(element).center();
不幸的是,这在最新版本的 Safari、Firefox 和 Chrome 中搞乱了我的 (宽度:100%) div 的填充(可能所有浏览器也是如此)。左侧的内边距消失了,右侧的内边距仍然存在,但它脱离了页面,创建了一个滚动条。有什么建议吗?
The following code works wonders to center my div as long as there's no padding or 100% width in the css:
jQuery.fn.center = function () {
this.css("position","absolute");
this.css("top", (($(window).height() - this.outerHeight()) / 2) + $(window).scrollTop() + "px");
this.css("left", (($(window).width() - this.outerWidth()) / 2) + $(window).scrollLeft() + "px");
return this;
}
$(element).center();
Unfortunately, this screws up the padding of my (width: 100%) div in the latests versions of Safari, Firefox, and Chrome (probably all browsers too). The padding on the left is gone, and the padding on the right still exists, but it's off the page, creating a scrollbar. Any suggestions?
Live demo: http://www.pillerdesigns.com/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我想要将某些东西居中时,我通常会这样做:
无论如何,你有reset.css吗?因为您的问题是特定于浏览器的。
编辑:
将
box-sizing: border-box;
添加到您的#content
div css 中。问题是您在 100% 宽度元素上使用填充。
box-sizing
方法适用于所有浏览器,但不适用于 IE7 及更低版本。-- 或 --
将您的
#content
div 包裹在另一个 div 中,将其设置为 100% 并将填充添加到内部 div。When I want to center something I normally do this:
Anyway, do you have a reset.css? Since your problems are browser specific.
EDIT:
Add
box-sizing: border-box;
to your#content
div css.Problem is you're using padding on a 100% width element.
box-sizing
method will work in all browsers but not IE7 and lower.-- OR --
Wrap your
#content
div inside another div, make that one 100% and add the padding to the inner div.