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

App下載
首頁(yè)htmltext_overflowCSS Property Value - 如何text-overflow: ellipsis;

CSS Property Value - 如何text-overflow: ellipsis;

我們想知道如何text-overflow: ellipsis;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.wtf {
  width: 250px;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  padding: 0;
}
</style>
</head>
<body>
  <div contenteditable="true">
    <p class="wtf">WHAT IS HAPPENING asdfkjas dflkasd jfalskdfj
      asldkfj asldkf</p>
    <p class="wtf">SECOND LINE and it also needs to have an ellipsis</p>
  </div>
</body>
</html>