Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
By way of thanks...
Thanks to all the people who have helped me recently.
By way of thanks I would like to share this little tidbit...
I'm sure, like me, there are those who hate the ugly border that Firefox displays around pictures that are links. Put this line into your CSS and Firefox will behave itself.
By way of thanks I would like to share this little tidbit...
I'm sure, like me, there are those who hate the ugly border that Firefox displays around pictures that are links. Put this line into your CSS and Firefox will behave itself.
:focus { -moz-outline-style: none; }
0
This discussion has been closed.
Comments
a img { border: 0 }
To prevent Internet Explorer, Opera, Safari, and every other browser from doing it.
Only if you don't want borders on any image, which is often the case. Otherwise, though, use the a selector.
It's really easy to install! Open vanilla.css and add: body { display: none }. Very clean style if you ask me
^^
http://uncyclopedia.org/wiki/Nihilism
I don't mean the image border (border="1"), I'm referring to the dotted outline Firefox puts around an image link when you click on it
It's ugly and makes a clean site look, well dotty!
a { outline-style: none; -moz-outline-style: none; }
works nicely for me.