Dashed underlines are made by setting the border-bottom and text-decoration properties. For example, for the glossary links, I used the following code:
| border-bottom: 1px dotted #005000; text-decoration: none | which corresponds to 1 pixel dotted (dashed) green bottom border.
A working example would be
<STYLE TYPE="text/css">
a.glossary
{
color: #005000;
border-bottom: 1px dotted #005000;
text-decoration: none
}
</STYLE>
<A CLASS="glossary" HREF="#">test</A> |
Last edited on Sat Mar 1st, 2003 12:28 pm by Aycan
|