How to center a “position: absolute” element

后端 未结 26 3988
-上瘾入骨i
-上瘾入骨i 2020-11-21 05:35

I\'m having a problem centering an element that has the attribute position set to absolute. Does anyone know why the images are not centered?

<
26条回答
  •  庸人自扰
    2020-11-21 05:57

    Centering something absolutely positioned is rather convoluted in CSS.

    ul#slideshow li {
        position: absolute;
        left:50%;
        margin-left:-20px;
    
    }
    

    Change margin-left to (negative) half the width of the element you are trying to center.

提交回复
热议问题