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 {
}