我试图让<h1>
居中并将背景颜色调整为文字大小。如您所见,现在它不是居中的。这是我的尝试:
<h1>this text must be centered</h1>
h1 {
background-color: red;
display: inline-block;
margin: 0 auto;
padding: 5px;
}
答案 0 :(得分:1)
请按以下方式进行。您应该display:table;
使用h1
。
<h1>this text must be centered</h1>
h1 {
background-color: red;
display: table;
margin: 0 auto;
padding: 5px;
}