Y留过长发虽未及腰
2016-01-28 21:14
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>浮动模型</title> <style type="text/css"> #div3{ border:5px pink solid; width:605px; height:20px; inline-block; background-color:Cyan; } #div1,#div2{border:5px yellow solid; width:300px; height:80px; inline-block; background-color:chartreuse; float:left;} </style> </head> <body> <div id="div3">导航条</div> <div id="div1">栏目1</div> <div id="div2">栏目2</div> </body> </html>
在#div1,#div2中设置margin-right, margin-top属性试试。
margin-right: 10px; margin-top: 10px;
结果图:
margin可以设置周边距你给的这个例子的话只要加上#div3{margin-bottom:?px}#div1{margin-bottom:?px}即可
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>对齐</title>
<style type="text/css">
div{text-align:center;}
div{line-height:8em;}
</style>
</head>
<body>
<div><img src="http://img.mukewang.com/52b4113500018cf102000200.jpg" ></div>
<div><img src="http://img.mukewang.com/52b4113500018cf102000200.jpg" ></div>
</body>
</html>
这种不知道可以吗?
<style type="text/css">
#div3{
margin:10px; /*随便加了10px,是不是你想要的效果*/
border:5px pink solid;
width:605px;
height:20px;
inline-block;
background-color:Cyan;
}
#div1,#div2{
margin:10px; /*随便加了10px,是不是你想要的效果*/
border:5px yellow solid;
width:300px;
height:80px;
inline-block;
background-color:chartreuse;
float:left;}
</style>
在#div1,#div2中设置margin-right, margin-top属性试试。
margin-right: 10px; margin-top: 10px;
结果图:
用一个一个大的div包括所有小的div,给大的div设置一个外边距(margin)即可。已试验过。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>浮动模型</title>
<style type="text/css">
#div3{
border:5px pink solid;
width:605px;
height:20px;
inline-block;
background-color:Cyan;
margin-bottom: 10px;
}
#div1,#div2{border:5px yellow solid;
width:300px;
height:80px;
inline-block;
background-color:chartreuse;
float:left;
}
#div1{
margin-right: 10px;
}
</style>
</head>
<body>
<div id="div3">导航条</div>
<div id="div1">栏目1</div>
<div id="div2">栏目2</div>
</body>
</html>
<!-- 使用margin就可以使用div之间的间隔-->
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题