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
  • 18,542
  • 37
  • 165
  • 337

2 Answers2

0

Try outline:none; for click-able div

G.L.P
  • 7,051
  • 4
  • 22
  • 40
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,330
  • 10
  • 61
  • 132