我正在尝试更改twitter typeahead js的宽度,但即使我放width:100% !important
它也不会扩展到100%
。如果我在px中声明宽度它是有效的。有谁有想法吗?
这是演示http://jsfiddle.net/uuzVN/
<input id="states" type="text" class="typeahead">
答案 0 :(得分:8)
这个解决方案怎么样?: http://jsfiddle.net/uuzVN/2/
/** Added from this point */
.twitter-typeahead{
width: 97%;
}
.tt-dropdown-menu{
width: 102%;
}
input.typeahead.tt-query{ /* This is optional */
width: 300px !important;
}
您只需要将宽度微调到您在实际项目中使用的模板。我改编它来调整iframe。