autocomplete="off"——输入框 自动提示 删除
- autocomplete 属性适用于 <form>,以及下面的 <input> 类型:text, search, url, telephone, email, password, datepickers, range 以及 color。
- html5新属性
自定义input 按钮样式
- 用了 rem.js文件来调整自适应(移动端)
1 /*答题按钮*/ 2 /*隐藏按钮*/ 3 input[type="checkbox"] { 4 appearance: none; 5 -webkit-appearance: none; 6 outline: none; 7 display: none 8 } 9 10 label > span { 11 /* 100%;*/ 12 width: 4rem; 13 min-width: 253px; 14 line-height: 1.5em; 15 padding: 0.23rem 0.2rem; 16 background-color: #fff; 17 border: 2px solid #ffbeac; 18 border-radius: 0.10rem; 19 display: inline-block; 20 box-sizing: border-box; 21 text-align: center; 22 } 23 24 label input[type="checkbox"]:checked + span { 25 /* 100%;*/ 26 width: 4rem; 27 min-width: 253px; 28 background-color: #ffbeac; 29 }