How to center div?

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

    This will center the

    horizontally:

    #container{
        width: 366px;
        height: 274px;
        margin: 0 auto;
    }
    

    Centering vertically is not quite simple, you maybe have to use javascript for that, or you try this css solution.

提交回复
热议问题