Posted by DesignUnder
February 16th, 2012
No Comments
Things It Might Be Fun/Useful to Try the Universal (*) Selector On
Paul Irish recently wrote a post on using the universal selector to set border-box box-sizing on everything: * { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } I’ve been wanting to try that for a while and I’m happy to say I’ve used it on a few projects already and it’s awesome. It also got my thinking what other properties might be similarly useful in applying to all elements on the page. Transitions * { -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; } If you’re on a desktop browser, try it out right now.
Read the full post ⇒
Tags: article, container, CSS, estelle-weyl, image, pre-rel, slightly-bigger, universal
Posted under: CSS, Icons, Programming, Tools, Wordpress






















