LoginSignup
3
8

More than 5 years have passed since last update.

テキスト系のinputタグをまとめて指定したい君へ

Last updated at Posted at 2017-10-19

inputの体裁を整える時にいつもチェックボックスやラジオボタンを巻き込んでしまうめんどくさがりのぼくより愛を込めて

:notを使う(IE8非対応)

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="reset"]):not([type="button"]):not([type="image"]) {

}

ベタで指定する

input[type=text],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=date],
input[type=time],
input[type=number],
input[type=range],
input[type=color],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
select,
textarea {

}
input[type=checkbox],
input[type=radio] {

}
input[type=hidden],
input[type=file] {

}
input[type=submit],
input[type=reset],
input[type=button],
input[type=image],
button {

}
3
8
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
3
8