无法更改引导工具提示“箭头”的CSS

时间:2018-09-14 15:48:48

标签: css twitter-bootstrap

我希望它是灰色的,就像我在这里设置的颜色一样:

IEnumerable

但工具提示还原的“箭头”部分的颜色不变。

enter image description here

我尝试过:

.tooltip > .tooltip-inner {
  background-color: #b9b9b9;
  color: #333;
}

.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #b9b9b9;
}

无济于事。我想念什么?

1 个答案:

答案 0 :(得分:0)

工具提示的箭头以:after的形式到达css,通常是边框值。

您必须使用

.tooltip > .tooltip-inner::after {
  border-color: #b9b9b9 transparent transparent transparent;
}