View Single Post
  #2 (permalink)  
Old 06-16-2007, 12:27 PM
TonySoprano TonySoprano is offline
Senior Member
 
Join Date: May 2007
Posts: 267
Default

Quote:
Originally Posted by mouse View Post
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;
}
Reply With Quote