-
按照百分比来设置板块的宽度,即可实现自适应查看全部
-
<!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:20px; font-weight:bold} div{ line-height:50px} .left{ width:70px; height:600px; background:#ccc;position:absolute; left:0; top:0} .main{ height:600px; margin:0 80px 0 80px; background:#9CF} .right{ height:600px; width:70px; position:absolute; top:0; position:absolute;right:0;top:0; background:#FCC;} </style> </head> <body> <div class="left">left</div> <div class="main">设计首页的第一步是设计版面布局。就象传统的报刊杂志编辑一样,我们将网页看作一张报纸,一本杂志来进行排版布局。 虽然动态网页技术的发展使得我们开始趋向于学习场景编剧,但是固定的网页版面设计基础依然是必须学习和掌握的。它们的基本原理是共通的,你可以领会要点,举一反三。</div> <div class="right">right</div> </body> </html>查看全部
-
让元素脱离文档流,使用position:absolute查看全部
-
布局 又称版式布局查看全部
-
什么叫布局?查看全部
-
混合布局编程挑战CSS代码部分 <style type="text/css"> body { margin: 0; padding: 0; font-size: 30px; color: #fff; } .top { width: 100%; height: 100px; background: #ccc; margin: 0 auto; } .main { width: 100%; height: 500px; background: red; margin: 0 auto; } .right { height: 500px; background: #b3e5b3; position: absolute; left: 210px; right: 0; } .left { width: 200px; height: 500px; background: blue; position: absolute; left: 0; } .foot { width: 100%; height: 100px; background: #e65b00; margin: 0 auto; } </style>查看全部
-
两列自适应布局。查看全部
-
为什么right背景色不见了。后面多一个大括号,不谢!我也是看到别人写的哈哈哈查看全部
-
混合布局,中间两列,左边固定,右边自适应,使用父元素相对定位,子元素绝对定位。查看全部
-
三列布局,两端固定,中间自适应查看全部
-
浮动(float)和 绝对定位(position:absolute)可以让元素脱离文档流查看全部
-
css布局查看全部
-
<!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{ width: 100%; background-color: red; height: 100px; } .main{ height: 1000px; margin:0 auto; background-color: yellow; width:800px; } .left{ float: left; width: 200px; height: 1000px; background-color: black; } .right{ width:70%; height:1000px; float: right; margin:0 auto; background-color: #666; } .foot{ height:100px; clear: both; margin:0 auto; background-color: #696; } </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 type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{width:100%;height:80px;background:grey;} .main{width:100%;height:600px;background:red;} .left{ width:200px;height:600px;background:blue;position:absolute;margin-left:0;} .right{height:600px;width:100%;background:green;float:right;position:absolute;margin-left:210px;} .foot{width:100%;height:50px;background:yellow;} </style>查看全部
-
网页的主要元素是文本和图片,网页设计的特点有两个(一个是网页可以自适应宽度、二是网页的长度理论上没有限制) 网页一般分为三部分:头部、内容、底部;再根据内容的多少给网页分栏(又称分列):一列布局、二列布局、三列布局、混合布局等) 通过浮动和定位来实现UI设计功能查看全部
举报
0/150
提交
取消