My <span>
tag has a background color and left and right padding applied to it. However, the padding is only visible at the beginning and end of the <span>
, not on each line when the text wraps onto multiple lines.
Is there a way to add padding to the middle lines as well?
h1 {
font-weight: 800;
font-size: 5em;
line-height: 1.35em;
margin-bottom: 40px;
color: #fff;
}
h1 span {
background-color: rgba(0, 0, 0, 0.5);
padding: 0 20px;
}
<h1><span>The quick brown fox jumps over the lazy dog.</span></h1>