How to center div?

前端 未结 6 365
抹茶落季
抹茶落季 2021-01-19 02:01

I have a problem with centering div in HTML (vertical & horizontal). My code looks something like this:

SOME HTML
6条回答
  •  星月不相逢
    2021-01-19 02:30

    Try this one:

    Css:

    .cont{
      background-color: tomato;
      width: 600px;
      height: 400px;
      position: relative;
    }
    .box {
      width:100px;
      height:100px;
      background-color: teal;
      color:#fff;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%)
    }
    

提交回复
热议问题