Align a div to center

后端 未结 14 2098
别跟我提以往
别跟我提以往 2020-12-02 13:20

I want to float a div to center. Is it possible? text-align: center is not working in IE.

14条回答
  •  爱一瞬间的悲伤
    2020-12-02 13:29

    This has always worked for me.

    Provided you set a fixed width for your DIV, and the proper DOCTYPE, try this

    div {        
      margin-left:auto;
      margin-right:auto;
    }
    

    Hope this helps.

提交回复
热议问题