LoginSignup
14
14

More than 5 years have passed since last update.

アプリ内のWeb Viewで絶対に使う

Last updated at Posted at 2014-12-17

css。いつも忘れるので、忘れないようにメモ。。。

*{
  /* タップしたときに表示される枠を非表示にする */
  -webkit-tap-highlight-color: rgba(0,0,0,0);

  /* リンク長押しの時に出るメニューを非表示にする */
  -webkit-touch-callout: none;

  /* 文字や画像を選択できなくする */
  -webkit-user-select: none;
}
/* inputとtextareaでは user-select を autoにしないと入力できなくなる/(^o^)\ので */
input,
textarea {
  -webkit-user-select: auto;
}
14
14
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
14
14