Sunday, April 10, 2011

CSS underline


Task: 
Change space between word and bottom line in link element (<a></a>).

Solution: 
a {
padding-bottom: 10px; //space between word and line
color: #555;
text-decoration: none;
border-bottom: 1px solid #555;
}