How to center div?

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

    Should be fine to use just CSS:

    here is the demo

    #container{
        width: 366px;
        height: 274px;
        margin: 50%;
        top: 50%;
        left: 50%;
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
    }​
    

提交回复
热议问题