使用float时

69 阅读1分钟

在css中子元素使用float使其浮动起来时,如果儿子比爸爸大,爸爸将包裹不住儿子则需要添加

.clearfix::after{
    content:"";
    display:block;
    clear:both;
  }

   需要在爸爸div中加入<div clearfix>

float页面要定宽