我想要的是将绿色背景放在文本后面,而不是 100% 的页面宽度。这是我当前的代码:
h1 { text-align: center; background-color: green; } <h1>The Last Will and Testament of Eric Jones</h1>
将文本放入内联元素中,例如<span>.
<span>
<h1><span>The Last Will and Testament of Eric Jones</span></h1>
然后在内联元素上应用背景颜色。
h1 { text-align: center; } h1 span { background-color: green; }
内联元素与其内容一样大,因此应该为您完成。