Archive for the ‘HTML & CSS’ Category

Even Microsoft is sick of IE

Posted on October 22nd, 2009 in Funny Stuff, HTML & CSS | 1 Comment »

I am currently using Dialup. Sometimes when a page is loading and there’s some problem with the connection then the unloaded code shows up as text.

Today I was viewing Microsoft’s website and this is what I saw (after a connection problem):

Internet Explorer sucks

LOL. Even Microsoft is sick of Internet Explorer.

How to remove selection rectangle using CSS

Posted on September 13th, 2009 in HTML & CSS | 4 Comments »

recty

Have you ever noticed that when you click a link (in Firefox,IE etc) a dotted rectangle appears around it? (see the image above)

I don’t have a problem with it. But if you find it boring and want to get rid of it. Then I’ve the best solution for you. You can get rid of it with one line of code.

All you have to do is to insert this into your CSS:

* { outline: none; }

And those rectangles (or outlines) will never appear again.