国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁htmloverflowCSS Property Value - 如何overflow: hidden;

CSS Property Value - 如何overflow: hidden;

我們想知道如何overflow: hidden;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  border: 1px solid black;
  width: 70px;
  white-space: nowrap;
  margin: 1.00em 0;
}

.hideExtraBits {
  overflow: hidden;
}

.preOnly {
  white-space: pre;
}
</style>
</head>
<body>
  <div>this is a test</div>
  <div class="hideExtraBits">this is a test</div>
  <div class="preOnly">this is a test</div>
</body>
</html>