hyperlinkcode.com

How To Change Hyperlink Underline Color

Changing the underline color of a hyperlink cannot be done with straight HTML. To do this, we take the regular hyperlink code and add an inline CSS style to it. The underline first has to be removed with the text-decoration property value of none and then we add the border-bottom property with 3 short-hand CSS values of 1px solid #999999.

Code To Change Hyperlink Underline Color

Code

<a href="change-underline-color.php" style="text-decoration: none; border-bottom: 1px solid #999999">change underline color</a>

Output

change underline color

Tip

Visit html-color-names.com to find matching colors with HTML hex codes quickly.

Save to del.icio.us :: Digg This! :: Stumble It! :: Add to Propeller :: Save to Furl :: Add to Reddit :: Blinklist It!

More Hyperlink Codes