HTML center content through margin auto not working

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

I have the following Html code

Team

6条回答
  •  北海茫月
    2021-01-19 14:04

    You need to set a width to #team, for example:

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

    ... which is a shorthand version of:

    div#team {
        margin-top: 0;
        margin-left: auto;
        margin-bottom: 0;
        margin-right: auto;
        width: 800px;
    }
    

提交回复
热议问题