Sorry to ask this here, but I know some of you are knowledgeable in this category, and I've looked all through my books. How do I change the look of a link's underline, from a solid line to either dashed or dotted?
Thanks!
Technical Support Forums » Other
CSS question (3 posts)
-
-
set text-decoration to none and apply a bottom border like so:
a { text-decoration: none; border-bottom: 1px dashed #00f; }
-
Thank you Randy! That is exactly what I needed! I appreciate it!