css – 绝对位置从顶部,水平居中的div

前端之家收集整理的这篇文章主要介绍了css – 绝对位置从顶部,水平居中的div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看过谷歌google的结果,没有找到任何工作.

我需要让我的div(高333像素,宽550像素)水平居中,总是从顶部275像素.每次我试图做到这一点,它就消失了.

解决方法

如果div应该坐在上面,你必须使用position:absolute.否则,@sdleihssirhc的答案应该有效.

定位示例

#middleBox
{
    position:    absolute;
    top:         275px;
    left:        50%;    /* move the left edge to the center … */
    margin-left: -275px; /* … and move it to the left half the Box’ width. */
    z-index:     9999;   /* Try to get it on top. */
}

使用像DragonflyFirebug这样的工具来检查属性是否仍然消失.

原文链接:https://www.f2er.com/css/214650.html

猜你在找的CSS相关文章