0

I am working on an HTML page with few tab and click-able div which toggle between controls. But each control when click show dotted background as show in image below

enter image description here

How can i change this to any other color or not show it at all

Learning
  • 19,469
  • 39
  • 180
  • 373

2 Answers2

0

Try outline:none; for click-able div

G.L.P
  • 7,119
  • 5
  • 25
  • 41
0

your dotted must befined by something like this:

p {
    border-style: dotted solid;
    color:yellow;
}

you can put this if you want to remove it:

p {
    border-style: none;
}

or change the type of dot:

p {
    border-style: dashed solid;
}
clement
  • 4,204
  • 10
  • 65
  • 133