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

.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 */
  }

10-04 17:57