RSS Feed

FireFox displays an ugly dotted border around links (all linked elements in fact):

Remove FireFox Dotted Border From Links

You can easily prevent FireFox from displaying this border by adding the following CSS style sheet, or within the <style> tags on your page:

a:active { outline: none; }
a:focus { -moz-outline-style: none; }

This should not prevent your CSS from validating according to W3C’s standards.





<a href="http://www.mysite.com/">some site</a>
<blockquote>quote</blockquote>
<em>some emphasized text</em>
<strong>some bold text</strong>
<pre lang="">some code</pre>
To add code to your comments, simply wrap the code inside <pre> tags. Syntax highlighting will be added if you define the language. Example:
<pre lang="php">some code</pre>

Supported "lang" attribute values: html4strict, css, php, javascript, xml & mysql