摘要:
.wrapper{ border:3px solid red; float: left;}.content{ width: 100px; height: 100px; background: black; color: #fff; float: left;}</style></head><body> 阅读全文
摘要:
给需要单独一行的元素添加clear:both .wrapper{ border:1px solid #000;}.content{ width: 100px; height: 100px; background: black; color: #fff; float: left;}p{ border- 阅读全文
摘要:
块级元素看不到float元素; 产生了BFC的元素和inline元素及文本可以看到float元素; .box{ float: left; width: 100px; height: 100px; background: black; opacity: 0.5;}.demo{ width: 150px 阅读全文
摘要:
绝对定位方式:div{ width: 100px; height: 100px; background: green; position: absolute; top: 50%; left: 50%; margin-left: -50px; margin-top: -50px;} 注释:DIV绝对定 阅读全文
摘要:
定位的两种方式: absolution:脱离原来文档流,相对于最近的有定位的父级进行定位,如果没有就相对于文档定位; relative:保留原来文档流位置进行定位,相对于自己原来的位置定位; 参数:left:20px; //相对于原来位置左移20px; 阅读全文