HTML center content through margin auto not working

前端 未结 6 1757
轻奢々
轻奢々 2021-01-19 12:59

I have the following Html code

Team

6条回答
  •  温柔的废话
    2021-01-19 13:55

    Team needs to have a width to be able to use margin: auto.

    div#team {
        margin: 0 auto;
        width: 400px;
    }
    

    Here is a fiddle: JS Fiddle

提交回复
热议问题