Border style
Copy and paste this in your CSS stylesheet or between the style tags, replace STYLE by the style you want... dotted appears like dashed in IE, though they aren't the same. (Use Firefox! ;])
img {
border: STYLE;
}
Of course, you can replace img by whatever you want.
1px dotted #000000
1px dashed #000000
1px solid #000000
3px double #000000
3px groove #000000
3px ridge #000000
1px inset #000000
1px outset #000000
If you want only a border at the bottom, use this:
a {
border-bottom: STYLE;
}
Leave a Comment
Works? Doesn't work? Other tips? Please leave a comment! :)