-
float和position:absolute都能让元素脱离文档流,但float能占据位置,position属性不能,包括position:fixed查看全部
-
font-weight:bold 定义字体加粗查看全部
-
position absobote left top 0查看全部
-
使用浮动float和绝对定位position:absolute进行布局查看全部
-
三列布局 left 絕對定位 postition:absolute; left:0; top:0 right 絕對定位 postition:absolute; right:0; top:0查看全部
-
div宽度确定的时候可以使用float进行定位,但是div宽度不确定的时候(宽度自适应的时候)就不能使用float进行定位了,要使用绝对定位。查看全部
-
overflow:hidden查看全部
-
木有学会main查看全部
-
声音好小 基本听不清在说什么查看全部
-
清除浮动有以下三种方式: 1.父元素清除浮动 设置--->.box{overflow:hidden;} <div class="box"> <div class="left"></div> <div class="right"></div> </div> 2.浮动元素后添加空div清除浮动 设置--->.clear{clear:both;}(通常情况both) <div class="left"></div> <div class="right"></div> <div class="clear"></div> 3.伪元素清除浮动 设置-->.box::after{content:""; display:block; clear:both;} <div class="box"> <div class="left"></div> <div class="right"></div> </div> 简单分析: 1.第一种方式:给父元素设置,内容溢出隐藏,将子元素拽回文档流,达到清除浮动效果。 2.第二种方式:浮动元素后面的div,设置清除浮动。 3.第三种方式:伪元素::after->box元素之后添加 ""内容(无内容),块级元素,设置清除浮动 与方式2原理一样。查看全部
-
混合布局代码查看全部
-
混合布局示例查看全部
-
三列布局--左固定有固定中间自适应 .left{ width:240px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 240px; background:#9CF} .right{ height:600px; width:240px; position:absolute; top:0; right:0; background:#FCC;}查看全部
-
.main{ width:80%; height:600px; margin:0 auto} .left{ width:20%; height:600px; background:#ccc; float:left} .right{ width:80%; height:600px; background:#FCC; float:right}查看全部
-
一列布局 .main, .footer{width:80%;margin:0 auto} .head{ height:100px; background:#ccc} .main{ height:600px; background:#FCC} .footer{ height:50px; background:#9CF}查看全部
举报
0/150
提交
取消