How to horizontally center a fixed positioned element

后端 未结 4 1596
深忆病人
深忆病人 2020-12-11 09:43

I have a layer with an image inside:

and it is fixed positioned:



        
4条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-11 10:29

    When you position an element to fixed, it gets out of the document flow, where even margin: auto; won't work, if you want, nest an element inside that fixed positioned element and than use margin: auto; for that.

    Demo

    Demo 2 (Added height to the body element so that you can scroll to test)

    HTML

    CSS

    .fixed {
        position: fixed;
        width: 100%;
        height: 40px;
        background: tomato;
    }
    
    .center {
        width: 300px;
        margin: auto;
        height: 40px;
        background: blue;
    }
    

    Some will suggest you to use display: inline-block; for the child element with the parent set to text-align: center;, well if that suffice your needs, than you can go for that too...

    .fixed {
        position: fixed;
        width: 100%;
        height: 40px;
        background: tomato;
        text-align: center;
    }
    
    .center {
        display: inline-block;
        width: 300px;
        height: 40px;
        background: blue;
    }
    

    Demo 2

    Just make sure you use text-align: left; for the child element, else it will inherit the text-align of the parent element.

提交回复
热议问题