1

我有一个图像和一些位于图像内的文本。我的问题是当文本被包裹时,因为我想要显示的长度。

.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;
  }
4

1 回答 1

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 */
  }
于 2013-08-15T00:14:40.017 回答