默认 tt-input 是transparent
,我想在焦距为white
时更改背景颜色,但是当我更改color
提示不再显示,因为它被new color
隐藏了。
如何改变?
答案 0 :(得分:2)
background-color: transparen
已设置为带有javascript的内联样式。
您应该使用!important
覆盖它。
<input class="typeahead" type="text" placeholder="States of USA">
你应该使用:
.typeahead.tt-input {
background-color: black !important;
}