Sun, 2006-06-11 19:19
Hi all,
Can anyone advise the best way of getting arround IE's bug that converts 1px dotted borders into 1px dashed borders.
Thanks.
Sun, 2006-06-11 20:10
#1
1px dotted borders in IE
I can't/won't recommend the best way ( too subjective for me) and there are far too many ways, but Google can show you the path to enlightenment.
Mon, 2006-06-12 04:13
#2
1px dotted borders in IE
Thanks!
I used this: http://kalsey.com/2003/07/css_dotted_borders_in_ie/
Mon, 2006-06-12 06:25
#3
1px dotted borders in IE
Have a look there as the solutions do not use the star hack :
http://krijnhoetmer.nl/stuff/css/dotted-border/
Mon, 2006-06-12 06:30
#4
1px dotted borders in IE
I don't like hacks too much myself, so i completely got rid of the standards compliant
{
border-bottom:1px dotted
}
and replaced it with
{
background: url(/images/555_dot.gif) repeat-x bottom;
}
Thanks for the link though.