2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

特定の文字列をブラウザ上で選択できなくする方法(コピペ防止)

Posted at

下記のように、選択させたくない領域にスタイルを指定する。

<div class="hoge">コピペさせたくない文章</div>

<style>
	.hoge{
		user-select: none;
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		unselectable="on"
		onSelectStart="return false;"
	}
</style>
2
2
0

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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?