How to center div?

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

    This does the trick (vertical & horizontal):

    #container{
        position: absolute;
        width: 366px;
        height: 274px;
        left: 50%;
        top: 50%;
        margin-left: -183px; /* half width */
        margin-top: -137px; /* half height */
    }
    

提交回复
热议问题