The span element margin-top:-10px; did not move up.

Mar.10,2021

margin top and bottom attributes are not valid for inline elements


check MDN :

The top and bottom margins have no effect on non-replaced inline elements, such as or .
To put it simply, the upper and lower margins are not valid for inline elements that are not substituted.

try, set span to block , and it will have an effect.


display:inline-block


set the span tag to display:inline-block; or block margin

Menu