Two ::after pseudo-elements
You can use a :before
pseudo-element in addition to your :after
- http://jsfiddle.net/BePSq/
You can use both the :before and :after pseudo-elements simultaneously on one DOM element. Just make sure you position them correctly. I believe :before places the psudo-element before the parent one, while :after places it after in the html. You can only use these two however and cannot add more pseudo-elements than that.
You can't add two ::after
pseudo-elements to one DOM element. You can however add an ::before
additionally. Depending on what you are trying to accomplish, this may work.