CSS pseudo-class content before and after inheriting oddness
Monday, April 26th, 2010hmmm. Since a few browsers now support content with :after and :before pseudo class, I thought I would try and use it for a cosmetic thing.So just doing something was, in fact, for a navigation menu where a full stop (period!) is added to the top links in the nested list like so:
#new_nav_top li>a:after { content:”.”; }
…BUT […]