gpt4 book ai didi

css - 是否可以使 .tt-input 更宽?

转载 作者:行者123 更新时间:2023-11-28 17:30:41 26 4
gpt4 key购买 nike

typeahead 示例 on the typeahead website似乎在元素的 style 中使用 3em !important 限制了 .tt-input 的宽度,这样当你输入一些东西时长于 3em 它开始在这个微小的输入中滚出 View 。

如何使 .tt-input 更宽?

这是一个屏幕截图,可以帮助解释我在说什么:http://oi57.tinypic.com/2vvt9qc.jpg .

最佳答案

这似乎被硬编码到 bootstrap-tagsinput.js 中,请参见第 46-47 行:

var inputWidth = (this.inputSize < 3 ? 3 : this.inputSize) + "em";
this.$input.get(0).style.cssText = "min-width: " + inputWidth + " !important;";

inputSize 是根据占位符文本计算的。如果没有,它将默认为 3em。您可能希望更改这些行以获得不同的值,或者完全删除该属性。我不完全确定它为什么在那里。

关于css - 是否可以使 .tt-input 更宽?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26160146/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com