国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁htmlwhite_spaceCSS Property Value - 如何white-space: nowrap; 顯示剪輯的文本

CSS Property Value - 如何white-space: nowrap; 顯示剪輯的文本

我們想知道如何white-space: nowrap; 顯示剪輯的文本。


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  display: block;
  clear: left;
  overflow: hidden;
}

div:hover {
  overflow: visible;
}

#bigBlock {
  width: 100px;
}

.nowrap {
  white-space: nowrap;
}
</style>
</head>
<body>
  <div id="bigBlock">
    <div id="subBlockA" class="nowrap">ABCDEFGHIJKL MNOPQRSTUVWXYZ</div>
    <div id="subBlockB" class="nowrap">12345678901 234567890</div>
  </div>
</body>
</html>