27
21

More than 5 years have passed since last update.

テキストを選択させないCSS

Last updated at Posted at 2014-12-11

テキストを選択されないように指定しているサイトがあります。モバイルのサイトでよく見かける気がします(^^ゞ

テキストを選択させない

user-selectを使います。

テキストを選択させないCSS
p {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

これでpタグのテキストは選択されなくなります。
モバイルでは問題なく動くんですかね−。IEは10以上で対応みたいです(☝ ՞ਊ ՞)

27
21
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
27
21