试图只显示未包装的文本

时间:2013-08-15 00:12:29

标签: 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;
  }

1 个答案:

答案 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 */
  }