Text Highlight vs Text Shadow

If you're going to use text shadow, for God sake disable it when highlighting

by Ilmv

HTML

<p>Some text that won't like being highlighted</p>
<p class="highlight">However this text will like being highlighted</p>

CSS

p {
    text-shadow: 1px 1px 4px black;   
}

p.highlight::selection {
    text-shadow: none;  
    background-color: orange;
}