
06-16-2007, 12:27 PM
|
| Senior Member | | Join Date: May 2007
Posts: 267
| |
Quote:
Originally Posted by mouse I am using a div tag to put up some text, and there are a few hyperlinks there. I want to use different color in that div, how can I do it?
My css is Code: a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
color: #FF0000;
text-decoration: underline;
} | try this Code: a {
text-decoration: none;
border-bottom: 1px solid red;
color: Lime;
} |