码迷,mamicode.com
首页 > 其他好文 > 详细

margin外边距负值的作用

时间:2016-01-06 13:46:03      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

margin外边距负值的作用:
在很多CSS代码中,都可以看到margin外边距有使用负值的情况,下面就介绍一下他的作用。

代码实例如下:

 

<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>蚂蚁部落</title>
<style type="text/css">
*{
  margin:0px;
  padding:0px;
}
#box{
  width:300px;
  height:300px;
  background-color:red;
  margin:0px auto;
}
#top{
  width:50px;
  height:50px;
  background:blue;
}
#bottom{
  width:50px;
  height:50px;
  background:green;
  margin-top:10px;
  margin-left:-20px;
}
</style>
</head>
<body>
<div id="box">
  <div id="top"></div>
  <div id="bottom"></div>
</div>
</body>
</html>

 

以上代码展现了外边距负值的作用,也就是和正值的作用相反。
关于负值的实例应用可以参阅CSS如何实现数字分页效果一章节。 

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=12699

更多内容可以参阅:http://www.softwhy.com/divcss/

 

margin外边距负值的作用

标签:

原文地址:http://www.cnblogs.com/xiaofinder/p/5105082.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!