gpt4 book ai didi

css - 试图只显示未换行的文本

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

我有一张图片和一些位于图片内的文字。我的问题是当文本由于显示我想要的长度而被换行时。

.temp-image .list .list.caption {  
background-image:url(bar.png);
font-size: 16px;
font-weight: bold;
height: 30px;
left: 1px;
line-height: 16px;
overflow: hidden;
text-align: center;
top: 190px;
width: 256px;
}

最佳答案

添加 white-space: nowrap 到 css

.temp-image .list .list.caption {  
background-image:url(bar.png);
font-size: 16px;
font-weight: bold;
height: 30px;
left: 1px;
line-height: 16px;
overflow: hidden;
text-align: center;
top: 190px;
width: 256px;
white-space: nowrap; /* Prevents Wrapping */
}

关于css - 试图只显示未换行的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18244368/

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