Archive

Archive for the ‘CSS’ Category

IE 8 CSS Hack

April 9th, 2009

In some cases, IE8 still can’t render CSS correctly. This is the magic trick to target only IE 8 .

.selector { property /*\**/: value\9 }

ex:
.myText { color /*\**/: #cc0000\9 }

CSS , ,

Removing Dotted Links

March 1st, 2009

If you don’t like the dotted outline that appears around every link (see image bellow) you can use  this CSS trick :

outline: none;

dottedlinks

Example :

a {
  outline: none;
}


Later edit : You must add the pseudo class of :focus to work on all IE versions.
(thanks to Eric Hoffman )

CSS ,