首页 > 代码库 > DIV三列同行
DIV三列同行
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus?">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>DIV三列同行</title>
<style type="text/css">
body { margin : 0; padding : 0; color : white; text-align : center; vertical-align: middle; }
.left { width : 200px; background-color : red; height : 100px; line-height : 100px; float : left; }
.center { background-color : yellow; height : 100px; line-height : 100px; color : green; }
.right { width : 200px; background-color : blue; height : 100px; line-height : 100px; float : right; }
</style>
</head>
<body>
<div class="left">位于第一行</div>
<div class="right">位于 center 之前</div>
<div class="center">位于 right 之后</div>
</body>
</html>
2、DIV 层的分离:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus?">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>DIV层的分离</title>
<style type="text/css">
body { margin : 0; padding : 0; color : white; text-align : center; vertical-align: middle; }
.left { width : 200px; background-color : red; height : 100px; line-height : 100px; float : left; filter:alpha(opacity=10); opacity: 0.5; }
.center { background-color : yellow; height : 150px; line-height : 150px; color : green; }
.right { width : 200px; background-color : blue; height : 100px; line-height : 100px; float : right; filter:alpha(opacity=10); opacity: 0.8; -moz-opacity:0.8; -khtml-opacity: 0.8; }
</style>
</head>
<body>
<div class="left">悬浮于 center div 之上,靠左,靠上展示</div>
<div class="right">悬浮于 center div 之上,紧贴 left div 靠左,靠上展示</div>
<div class="center">将此 div 的高度设置为 150 像素,大于 left div 和 right div 的高度,我们可以看出,实际上此层是占据了整个一行,left div 和 right div 是悬浮在此 div 之上的;通过设置 eft div 和 right div 的背景色为透明,我们也可以看出层的分离效果。</div>
</body>
</html>
DIV三列同行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。