在網(wǎng)頁設(shè)計中,有時候我們需要禁止用戶選擇文本,這就需要用到CSS的user-select
屬性。
body { -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* Internet Explorer/Edge */ user-select: none; /* Non-prefixed version, currently not supported by any browser */ }
上述代碼使用user-select
屬性禁止了用戶在頁面中選擇文本。在不同的瀏覽器中使用不同的前綴,確保代碼的兼容性。
需要注意的是,禁用選擇文本會對用戶體驗造成一定的影響,需要在使用前進行權(quán)衡。