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

App下載
首頁htmluser_selectCSS Property Value - 如何user-select: none;

CSS Property Value - 如何user-select: none;

我們想知道如何user-select: none;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.heading {
  color: gray;
  font-style: italic;
}

p {
  text-indent: 20px;
}
</style>
</head>
<body>
  <div>
    <span class="no-select heading">Heading 1 - can't select it</span>
    <p>This text you can select & copy.</p>
    <span class="no-select heading">Heading 2 - can't select it</span>
    <p>This text you can select & copy.</p>
  </div>
</body>
</html>