chenquincy/react-ellipsis

在antd的select的option中使用无效

MrSteins opened this issue · 4 comments

antd的select里使用要把display:-webkit-box给disabled掉才能截断,不知道什么原因

antd的select里使用要把display:-webkit-box给disabled掉才能截断,不知道什么原因

@MrSteins 我在 select 没发现你说的属性呀,能否给个截图

未复现,无响应

原因在于继承了父元素的 white-space: nowrap;

const App = () => (<div style={{ width: 400, whiteSpace: 'nowrap' }}>
  <Ellipsis ellipsis  text="高性能、可自定义的 react 文本缩略组件。支持自定义缩略符、html 自定义缩略符、尾字符过滤、缩略回调等功能。" maxLine={1} />
</div>)