Home › Forums › CSS › Using :after on an Inline Element: Firefox no-likey › Re: Using :after on an Inline Element: Firefox no-likey
July 19, 2012 at 7:15 am
#106411
Member
Using positions for an pseudo element that sits within an inline element is a bad idea as browsers can render inconsistent results, all you need is display: inline-block
and it works consistently in all browsers that support the :after
pseudo selector.