Align a div to center

后端 未结 14 2129
别跟我提以往
别跟我提以往 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:33

    this could help you..:D

    div#outer {
      width:200px;
      height:200px;
      float:left;
      position:fixed;
      border:solid 5px red;
    }
    div#inner {
      border:solid 5px green;
    }
    Stuff to center

提交回复
热议问题