idarmadi, thanks.
But, I have been doing web for years, though I don't claim to know every idiosyncracy of every browser, or which fail to acknowledge which CSS.
a img { border-style: none; } is proper syntax for saying: "all image links be borderless," as is
a img {
border: 0px none;
}
which is what I actually used.
If the 5.0 Mac IE browser does not obey that CSS, I can't imagine why it would obey
a img {
border: 1px solid #333333;
}
I'd feel foolish even trying, it is so illogical.
Or, is there something I'm missing . . . anyone?
regards,
stevenjs
__________________________
"I am but an egg."
Main Topics
Browse All Topics





by: idarmadiPosted on 2005-03-31 at 19:54:35ID: 13677973
Stevejs,
I can see the blue border around an image (that has a link) if you mousedown under IE. The blue border is not there if you view the page using Firefox or Safari, so I assume that this is IE specific 'problem'.
One trick that might be able to eliminate the blue-border is via style-sheet. Rather than putting border= none on IMG, you might want to define mousedown 'link' color. I found out that if an image doesn't link to anywhere, it won't have the blue border when I mousedown on the image.
I haven't been doin web dev for years, so I don't know the syntax of css mousedown property, you might want to asked the folks over at WebDev section of Expert-Exchange on how to CSS the mousedown. (Or maybe someone over here with web dev experience can offer an advice).
Good luck.