色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css文字不讓復制

林子帆2年前10瀏覽0評論

如何實現CSS文字不讓復制呢?其實很簡單,只需要這幾行CSS代碼:

user-select: none;
-moz-user-select: none;
-webkit-user-select: none;

什么意思呢?user-select: none;的意思是不允許用戶選擇文字,-moz-user-select: none;-webkit-user-select: none;則是 Firefox 和 Safari/Chrome 瀏覽器的兼容寫法。

例如,要讓某個 div 中的文字不可復制:

<div style="user-select: none; -moz-user-select: none; -webkit-user-select: none;">
這段文字不可復制。
</div>

這樣用戶就無法通過鼠標選擇和復制該 div 中的文字了。