search

Home  >  Q&A  >  body text

css3 - 如何让div中的内容水平居中,垂直居中

将内容区域的样式设置成这样,可以解决,可是在编码的时候也会有很多问题。

.element {
    width: 60px; height: 40px;
    position: absolute; left: 0; top: 0; right: 0; bottom: 0;
    margin: auto;    /* 有了这个就自动居中了 */
    border:1px solid red;
}

有其他的方法吗

怪我咯怪我咯2768 days ago1089

reply all(3)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 11:25:59

    First get a new method;
    I usually center it like this
    .element {

    width: 60px; height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%,-50%);
    border:1px solid red;
    }

    reply
    0
  • 高洛峰

    高洛峰2017-04-17 11:25:59

    You need: CSS layout - horizontal and vertical centering

    reply
    0
  • 巴扎黑

    巴扎黑2017-04-17 11:25:59

    Look here http://f2e.souche.com/blog/jie-du-cssbu-ju-zhi-shui-ping-chui-zhi-ju-zhong/

    reply
    0
  • Cancelreply