如何實現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 中的文字了。
上一篇css文字下加下劃線
下一篇mysql打開語句