Question
How can I dynamically add a green background behind text, not the entire page width, just the text.
Problem
The green is expanding to the entire page with my current code. I am not able to modify the HTML or Javascript, just the CSS file.
HTML
<h1>The Last Will and Testament of Eric Jones</h1>
CSS
h1 {
text-align: center;
background-color: green;
}