-
左右宽度固定,中间自适应查看全部
-
一列布局:margin:0 auto//上下为0,左右为auto查看全部
-
margin:0 auto查看全部
-
两列布局: 1.设置float属性,一个left.一个right查看全部
-
1:网页布局:又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合,将理性的思维个性的化的表现出来,是一种具有个人艺术特色的视觉传达方式。传达信息的同时有美感。 网页设计特点(相对纸媒来说) 1、网页可以自适应宽度 2、网页的长度理论上可以无限延长 3:页面为:头部,主体部分,底部。 分栏又称为分列:一列布局 二列布局 三列布局 以及混合布局(用的最多) 布局通过浮动和定位来完成(实现ui界面效果)查看全部
-
<style> body{margin:0;padding:0;}//清除默认样式 </style>查看全部
-
清除浮动两种方法:1. clear:both; 2. overflow:hidden.查看全部
-
一列布局:margin:0 auto 两列布局:左右浮动<br> 三列布局:左右绝对定位,中间靠margin调整位置 混合布局:在一列布局的基础上,保留top和foot部分,将中间的main部分改造成两列或三列布局查看全部
-
还得多复习查看全部
-
<style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{height:100px;background:red;} .main{height:500px;background:#690;} .left{width:200px;height:500px;background:green;position:absolute;left:0;top:100px;} .right{height:500px;background:pink;margin-left:210px;} .foot{height:50px;background:#310;} </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>查看全部
-
浮动与绝对定位可以使元素脱离文档流布局查看全部
-
上面的代码没有给main设置高度,而main里的内容又设置成了浮动,所以footer会跑到head的下面。 解决方法有两个:1.清除浮动, clear:both; 2、overflow:hidden;查看全部
-
<title>三列布局</title> <style type="text/css"> body{ margin:0; padding:0; font-size:12px; font-weight:normal} div{ line-height:30px} .left{ width:35px; height:200px; background:#ccc; float:left;position:absolute;left:0;top:0;} .main{ height:200px;margin:0 38px; background:#f0e68c;} .right{ width:35px; height:200px;; background:#ffa;position:absolute;right:0;top:0;} </style>查看全部
-
magin:0 auto 上外边距为0,其他方向为自动,设置了width后,auto可以实现居中效果查看全部
-
左右浮动与绝对定位查看全部
举报
0/150
提交
取消