Css – Can I set the background-color of two spans on adjacent lines, so the color also fills the space between the lines?
I have two spans on adjacent lines, with their background-color set. Unfortunately this leaves a gap between the two lines: html { line-height: 1.5; } span { background-color: red; } <pre> <span>line 1</span> <span>line 2</span> </pre> Is it possible, by…