CSS / Bootstrap - 很奇怪<a> behaviour

时间:2017-10-03 14:29:45

标签: javascript html css twitter-bootstrap-3

My problem is, when i click on nav link "about", whitch is my one page index (top site) it changes color. When i click elswere its color comes back to normal. I am using bootstrap 3. Have You ever noticed something similar?

  1. When i clik on enter image description here
  2. 当我点击elswere outsite enter image description here

1 个答案:

答案 0 :(得分:1)

Bootstrap具有链接焦点效果,这意味着在您单击链接后仍然处于焦点并且其样式已更改。

您可以按以下方式覆盖样式:

a:focus {
   color: #default_color
}

您可以将<a>更改为主菜单上的任何类,颜色应该是您用于默认样式的颜色,在本例中为white-ish

编辑:我看到你想在bootstrap文件中搜索焦点。我建议在你的主样式文件中覆盖它,它应该在bootstrap之后加载。