Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

Thursday, June 24, 2010

Leading or Line Height in CSS

Top CSS tip for website design idiots like me: leading of text in CS is called line height and can be measured in percentage, as below.

p { line-height: 150% }

Sunday, July 26, 2009

CSS stuff

Just a CSS snippet to help me on my way...


p {margin-left: 2px; margin-top: 80px; margin-right: 45px; margin-bottom: -5px; }


a.nav:link {color: red; text-decoration: none; }
a.nav:visited {color: purple; text-decoration: none; }
a.nav:hover {color: orange; text-decoration: underline; }
a.nav:active {color: blue; }