I am looking for a very specific kind of site that I am designing, and I ran into a brick wall. I would like to “highlight” tags quotesand <h2>, with the background color overlapping (similar to how you used a real marker).
This is an example of what I would like to do:

I tried several options.
- Trying to change tag style,
- using background gradients with a little opacity, etc., and I just can't get it to work.
Here is my last attempt, which looks like garbage, since the gradient does not create the appearance that I am going to, and the background seems to be visible as a single element and does not overlap on several lines:
.highlight span {
background-image: linear-gradient(#e2e200,#ffff00);
opacity:1;
color: #fff;
display: inline;
padding: 0.45rem;
box-decoration-break: clone;
}
Any thoughts would be greatly appreciated!