Removing defualt borders from links in Firefox (CSS)
One of Firefox's default styles is to put a dotted line border around active links. For many sites this is not an issue, and can even be helpful to the user, making it clear when they have clicked on a link. However, with some sites, especially when using images as links in the nav, it can look really ugly. To get rid of the dotted borders use the following CSS:
a:active, a:focus {outline: 0;}










Thanks for the tip. That's been a peeve of mine for some time!
Thanks! That worked like a breeze
Cascading Style Sheets (CSS) web design lessons
Css link Properties Attributes - examles
http://css-lessons.ucoz.com/link-css-examples-1.htm
http://css-lessons.ucoz.com/link-css-examples-2.htm
where do you plug that code into? i’m trying it on the css style and it’s not working
Thanx a lot!!
M using Object tag but outline Rocks!!!!!
thanks! First search and found exactly what I was looking for!
@skyler
where you’d put all your link attribute styles is where that code will go.
ie. a:link {}
a:visited {}
a:hover {}
a:link, a:focus { outline: none;}
this sits wherever you logically decide to put the code. Stick it with the rest of your tag selectors.
thanks very much for the tip!!