Can the height of the background color in my span be adjusted?
HTML
<span class="highlight">Some highlighted text</span>
CSS
.highlight{
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 1.5em;
background-color: #4db6ac;
line-height: 2em;
}
I want the highlight to be 1.8em, but I'm unsure how to do it without using lots of divs.