Putting span
s inside of a sup
doesn't apply expecting styling..
See Fiddle: https://jsfiddle.net/mkms1ozk/2/
You will notice the first abc
has margin/padding and the abc
included purely in a sup does not..
I would have thought the margin & padding of 0px would be applied to the span inside the sup
..
Is this expected behavior?
For the lazy like me here is the entire HTML..
<html>
<style>
span{
margin:0px;
padding:0px;
}
</style>
<body>
<sup>
<span>a</span>
<span>b</span>
<span>c</span>
</sup>
<sup>abc</sup>
</body>
</html>