表单form
|
|
单选按钮radio和复选按钮checkout
- 单选和复选按钮必须包含在label标签内
- 所有单选和复选按钮必须有相同的name
<input>
的type
属性值为radio
表示单选按钮,checkbox
表示复选按钮- 默认设置勾选只需在对应的
input
元素上加checked1234567<form><label><input type="radio" name="in-out">in</label><label><input type="radio" name="in-out">out</label><label><input type="radio" name="one-two-three">one</label><label><input checked type="radio" name="one-two-three">two</label><label><input type="radio" name="one-two-three">three</label></form>
css选择器
!important > inline-style > id选择器 > class选择器(后定义的class会覆盖先定义的)1.class {color: red !imporant;} //这条会覆盖所有的样式