我有一张图片和一些文字放在图片里面。我的问题是文本被包装,因为我想要显示的长度。
.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;
}
答案 0 :(得分:2)
将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 */
}