如何在materializecss的输入中添加正确的溢出文字?

问题描述 投票:0回答:1

我在中找到了公司名称列表。其中一些名称的长度可以达到100个字符。当用户选择它时,它看起来不是很好。enter image description here

我尝试过这些规则

{
  text-overflow:ellipsis; 
  overflow: hidden; 
  white-space: nowrap; 
  max-width: 250px;
}

但不起作用。我该怎么办?

html css materialize
1个回答
0
投票

您需要的是:

input[type=text] {
    text-overflow: ellipsis;
}

经过测试和工作:

https://codepen.io/doughballs/pen/LYVVXJM

© www.soinside.com 2019 - 2024. All rights reserved.