-
div居中: {margin:0 auto}查看全部
-
三列布局的固定可以用绝对定位来实现,position:absolute《定位和绝对定位》查看全部
-
<!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:gray;height:100px;} .main{background:red;height:500px;} .left{width:200px;background:blue;height:500px;position:absolute;top:100px;left:0;} .right{background:green;height:500px;margin-left:210px;} .foot{width:100%;background:orange;height:50px;} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="right">right</div> <div class="left">left</div><!--要求右侧(right)先加载,左侧(left)后加载--> </div> <div class="foot">foot</div> </body> </html>查看全部
-
<!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:gray;height:100px;} .main{background:red;height:500px;} .left{width:200px;background:blue;height:500px;float:left;} .right{background:green;height:500px;margin-left:210px;} .foot{width:100%;background:orange;height:50px;} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> <div class="foot">foot</div> </body> </html>查看全部
-
不错不错查看全部
-
float和position:absolute可以让元素脱离文档流。查看全部
-
恶气大旗网e查看全部
-
怕呵呵呵查看全部
-
清除浮动clear:both查看全部
-
三列布局:可以用固定的宽度和float,也可以用position:absolute、margin来实现查看全部
-
布局: 又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合。 网页:宽度自适应、高度无限制查看全部
-
<!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:1000px;height:100px;background:gray;} .main{width:1000px;height:600px;background:red;} .left{ width:300px;height:600px;background:blue;float:left;} .right{width:680px;height:600px;background:green;float:right;} .foot{width:1000px;height:50px;background:orange;clear:both;} </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>查看全部
-
一行文本时,height与line-height的值相同时,文本垂直方向居中查看全部
-
现在main中做一个相对定位,然后left做一个绝对定位,当然,left的绝对定位是以main为起点的绝对定位。(自己想的,多多指点)查看全部
-
浮动(float)和 绝对定位(position:absolute)可以让文档脱离文档流。查看全部
举报
0/150
提交
取消