I’d like to add rounded corners to sup element and some paddings.
<div>Here is my main text<sup>sup text</sup></div>
<style>
sup {
background-color:#f00;
}
</style>
sup element have display:inline; by default. I can set display:block; and manipulate with padding and rouded corners, but I should modify HTML structure because sup is block now. Is it possible to decorate sup with paddings and rounded corners without modifying HTML structure, but just CSS.
Thank you.
Yes, you can apply
inline-block– http://jsfiddle.net/HPzuZ/1/