Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
添加多个芯片时如何防止输入线扩展。我试过设置 flex 和 width 但它最终将输入线向下推。我也尝试将其设置为绝对,但这完全搞砸了对齐方式。这是正在发生的事情的图片:
带有自动完成功能的 md-chip 示例,输入框表现怪异。
尝试在 CSS 文件中添加,max-width和max-height标记。overflow-x: hiddenmd-chips-wrap
max-width
max-height
overflow-x: hidden
md-chips-wrap
像这样的东西:
md-chips-wrap{ max-width: 250px; max-height: 40px; overflow-x: hidden; }
让我知道你是否可以!