虽然老师的课程很好,不过有一点需要指出,一旦一个元素设置了 float, 那么这个元素的 display 就会被指定为 block,即使你手动再去改变 display 的值,它仍然会保持为 block!
2017-04-05
<form ><input class="text" type="text" value="邮箱/手机号/用户名"><br><input class="text" type="text" value="请输入用户密码"><br><br><input type="checkbox">下次自动登陆
<lable>忘记密码</lable><br/><input class="btn1" type="button" ><br>
<hr class="hr1"><input class="btn2"type="button" > </form>
<lable>忘记密码</lable><br/><input class="btn1" type="button" ><br>
<hr class="hr1"><input class="btn2"type="button" > </form>
已采纳回答 / 慕粉3914370
h3是块元素,默认宽度100%,你父元素如果和浏览器一样宽..那margin auto不就没有了么..文字居中可以试试text-align:center; 或者设定宽度 margin:0 auto;
2016-12-23