How to center div?

前端 未结 6 366
抹茶落季
抹茶落季 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:21

    #container{
        width: 366px;
        height: 274px;
        top: 50%;
        left: 50%;
        margin: -137px 0 0 -188px;
        position:absolute;
    }
    

提交回复
热议问题