views:

14

answers:

1

I'm using jQuery buttons on my page. Whenever I click one of them the Internet Explorer adds an ugly black border because the button is active. When I brows the jQuery button sample page with IE this border is not visible when I click one of the example buttons.

Why not?? How do they avoid this border? I checked their CSS files but could not find anything...

The only way to disable that border is using a CSS filter (which is not valid CSS):

button { filter:chroma(color=#000000); }

Maybe there is a better solution to this?

A: 

Do you have anything else in your CSS that could be causing this? If it's not appearing on the sample page then there's something in your markup/css/javascript that's causing it.

Try making an isolated sample with just the buttons in and adding all other CSS until you find out what's causing it.

Fermin