6

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

brasofilo
  • 25,496
  • 15
  • 91
  • 179
Very Curious
  • 881
  • 3
  • 26
  • 50

3 Answers3

1

Add an extra style in anchor tag.

style="background-color:transparent" 
Rana Aalamgeer
  • 702
  • 2
  • 8
  • 22
  • The background color fix wont work well if we have coloured button, as this would change their actual color. Try the focus outline:none css – techloris_109 Mar 15 '17 at 08:30
1

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;
 }
Rana Aalamgeer
  • 702
  • 2
  • 8
  • 22
0

To solve your problem you can add these style attributes to your anchor buttons btn1 and btn2:

border-top-left-radius: 41px;
border-top-right-radius: 41px;
border-bottom-left-radius: 41px;
border-bottom-right-radius: 41px;

I've tried with IE10 and it's working.

An example for btn1:

<a id="btn1" href="#" style="border-top-left-radius: 41px; border-top-right-radius: 41px; border-bottom-right-radius: 41px; border-bottom-left-radius: 41px;"/>
ᗩИᎠЯƎᗩ
  • 2,122
  • 5
  • 29
  • 41