Html – Different Precedence of text-decoration and text-shadow in Firefox vs Chrome
This HTML/CSS renders differently in Firefox versus Chrome — the layering of the text-decoration and the text-shadow are swapped. .foo { font-size:2em; text-decoration:underline LightBlue 1ex; text-decoration-skip-ink:none; text-underline-offset:-1ex; text-shadow: 1px 1px 3px HotPink; } <spann class="foo"> Gaze upon this text in…