Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IE, CSS: How to remove a highlight which appears, when click the button

Take a look at this page in IE (I have the newest version, but it also happens in older versions.)

http://tinuska.vibraflex.cz/

In above link there are two round buttons at bottom of the page. When you click the button, a semi-transparent highlight around the button appears. It doesn't appear in Mozilla or Chrome. Is it possible to remove it somehow?

enter image description here

like image 213
Very Curious Avatar asked Aug 07 '13 10:08

Very Curious


2 Answers

Add an extra style in anchor tag.

style="background-color:transparent" 
like image 194
Nidhi Ranpura Avatar answered Nov 04 '22 05:11

Nidhi Ranpura


TRY It. The below code of css is useful for remove the border and focus around the link or button.

a:focus{
 outline:none !important;
 }
like image 43
Rana Aalamgeer Avatar answered Nov 04 '22 05:11

Rana Aalamgeer