LoginSignup
3

More than 5 years have passed since last update.

iPhone・iPadでlabelを効かせるには

Last updated at Posted at 2013-11-20

イベントを追加

<label for="checkbox" onclick=""></label>

labelにonclick=""を追加する。
参考:http://wdb.micro-books.com/iphoneipad/iphoneipadlabel/

CSSを追加する

label {
    cursor: pointer;
}

こちらのほうだと一箇所で解決するので、簡単で良さそう。
普段使うreset.cssやnormalize.cssに追加しておいてもいいかも。
参考:http://d.hatena.ne.jp/genhou/20121006/1349478525

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
What you can do with signing up
3