-
中间自适应 左右固定 中间无width 不能用float 用绝对定位查看全部
-
三列 自适应布局查看全部
-
两列 固定布局查看全部
-
两列 自适应的布局查看全部
-
CSS中脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。 需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。 所以 用 clear :both:清除浮动 是footer这个盒子 不会紧跟在 top盒子之后,而是跟在main之后。查看全部
-
三列布局: 左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定位:margin:0 (right宽度+间隙宽度)px 0 (left宽度+间隙宽度)px; 上右下左,左右调节大小可以紧邻,也可以有间距 .left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;} margin不为0注意加单位查看全部
-
<style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{height:100px;background:#ccc;margin:0 auto} .main{width:800px;height:600px;background:#900;margin:0 auto} .left{ width:200px;height:600px;background:blue;} .right{width:73%;height:600px;background:#f00;position:absolute;margin:0 0 0 210px;} .foot{height:100px;background:#333;margin:0 auto} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="right">right </div> <div class="left">left</div> </div> <div class="foot">foot</div> </body>查看全部
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>混合布局编程挑战</title> <style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{height:100px;background:#ccc;margin:0 auto} .main{width:800px;height:600px;background:#900;margin:0 auto} .left{ width:200px;height:600px;background:blue} .right{height:600px;background:#f00;float:right;} .foot{height:100px;background:#333;} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="right">right</div> <div class="left">left</div> </div> <div class="foot">foot</div> </body> </html>查看全部
-
<style> body{ margin:0; padding:0; font-size:30px; color:#fff; } .top{ width:100%; height:100px; background:#ccc; } .main { height:150px; background:red; } .left { width:150px; height:150px; background:blue; position:absolute; left:0; top:100px; } .right { height:150px; background:#099; margin-left:155px; } .foot { background:orange; height:50px; width:100%; } </style>查看全部
-
CSS中脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。 需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。 所以 用 clear :both:清除浮动 是footer这个盒子 不会紧跟在 top盒子之后,而是跟在main之后。查看全部
-
三列布局: 左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定位:margin:0 (right宽度+间隙宽度)px 0 (left宽度+间隙宽度)px; 上右下左,左右调节大小可以紧邻,也可以有间距 .left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;} margin不为0注意加单位查看全部
-
position: absolute 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 relative 生成相对定位的元素,相对于其正常位置进行定位。 因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。 static 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 inherit 规定应该从父元素继承 position 属性的值。查看全部
-
float:left ->左浮动(定义元素在哪个方向浮动) float:right ->右浮动 text-align:left; -> 文字的对齐是左对齐查看全部
-
两列布局: 1、宽度自适应(用的比较少), 1.1因为宽度要自适应,所以要设置左侧left的width:xx%; 1.2需要左右排列,所以设置float:left; 1.3另一侧right也设置width和float(left和right都可以吧,再微调) 2、固定宽度(☆☆☆☆☆)left和right增加一个父div#main,设置这个main的width,以及margin 0 auto; 2.1如果要精确控制left和right的宽度,可以使用px【就是说也可以使用%粗略控制。】查看全部
-
.main margin:0 auto水平居中查看全部
举报
0/150
提交
取消