gpt4 book ai didi

html - CSS 文本溢出图标

转载 作者:行者123 更新时间:2023-11-28 06:55:46 25 4
gpt4 key购买 nike

嘿,我的右边有一个可点击的图标,我的文字溢出了。我该如何解决?

Codepen.io 示例:http://codepen.io/anon/pen/XmPmba

image:

enter image description here


code:

<ons-list-item modifier="tappable" ng-repeat="x in results" style="white-space: nowrap;">
<ons-row>
<ons-col>
{{ x.title }}
</ons-col>
<ons-col width="40px">
<ons-icon icon="fa-ellipsis-h" size="22px" style="background-color:red"></ons-icon>
</ons-col>
</ons-row>
</ons-list-item>

最佳答案

您应该设置宽度 width 属性,然后设置 overflow:hidden。像这样

<ons-list-item modifier="tappable" ng-repeat="x in results" style="white-space: nowrap;">
<ons-row>
<ons-col style="width:80px;overflow:hidden;">
{{ x.title }}
</ons-col>
<ons-col width="40px">
<ons-icon icon="fa-ellipsis-h" size="22px" style="background-color:red"></ons-icon>
</ons-col>
</ons-row>
</ons-list-item>

根据需要更改宽度的值。

关于html - CSS 文本溢出图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33522266/

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