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: nowrapcssに追加する

.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 に答える