input, button, textarea, select { /* デフォルトスタイルをリセット */ -webkit-appearance: none; -moz-appearance: none; appearance: none; /* font-familyを継承しないので、継承させる */ font-family: inherit; /* iOSの角丸をリセット */ border-radius: 0; /* box-size */ box-sizing: border-box; /* 文字の大きさ iOSでズームさせないために16px以上を指定 */ font-size: 16px; /* 文字色を親から継承 */ color: inherit; } label { /* iOSでのlabelとinput,select,textareaの関連付け */ cursor: p
