CSS Selectors

Selector Example Example description CSS .class .intro Selects all elements with class="intro" 1 #id #firstname Selects the element with id="firstname" 1 * * Selects all elements 2 element p Selects all <p> elements 1 element,element div, p Selects all <div> elements and all <p> elements 1 element element div p Selects all <p> elements inside <div> elements 1 element>element div ...

Remove Border Outline From Link

Add this following CSS code to your pages to remove that annoying dotted line border that appears when you click a link! a:active, a:focus { outline: 0; border: 0; text-decoration: none; -moz-outline-style: none; }