views:

26

answers:

2

Hi guys. Is anybody knows how to remove dotted outline on buttons in Opera?

+1  A: 

Are you looking for:

button{
  outline:none;
}

or if your button is an input...

input[type=button]{
  outline:none;
}
scunliffe
I reset the outline but it doesn't solve the issue
Sanchosrancho
A: 

if you attached css-reset in your stylesheet should solve the issue.

Faizal Heesyam
I use Meyer's reset and it doesn't solve the problem.
Sanchosrancho