重新认识margin-top和margin-bottom

    margin-top和margin-bottom是HTML网页设计中常用的两个样式属性,提起margin和padding的区别想来无人不知无人不晓,那么让我们实现如下功能:

1、“应付总额”所在div距父div的距离为20px;

2、“寄送至”所在div距离上面兄弟div的距离为10px;

3、“寄送至”所在div距离父div的距离为20px;

有些童鞋会不假思索的这样写代码:

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3.     <head>  
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5.         <title>重新认识margin-top和margin-bottom</title>  
  6.     </head>  
  7.     <body>  
  8.             <div style="background-color:red;">  
  9.                 <div style="margin-top:20px;">应付总额: ¥45.00</div>  
  10.                 <div style="margin-top:10px;margin-bottom:20px;">寄送至: 中国 河南省郑州市金水区</div>  
  11.             </div>  
  12.     </body>  
  13. </html>  

浏览器渲染后的效果如图所示:

        看到这个图是不是很吃惊:我们只实现了第二个要求,为什么会这样?一句话,我们对margin-top和margin-bottom的真实作用还没有充分的认识:margin-top用于设置其所作用的标签的上外距离,可是该上外边距相对于谁呢?是父div吗?呵呵呵,不是,因为该父div没有边界,对于margin-top来说根就参照不了,其实现在参照的是body;margin-bottom同样如此。可以如何解决这个问题呢?

第一种方法:最简单的方式是为父div添加边框

[html]  view plain  copy
  在CODE上查看代码片 派生到我的代码片
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3.     <head>  
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5.         <title>重新认识margin-top和margin-bottom</title>  
  6.     </head>  
  7.     <body>  
  8.             <div style="background-color:red;border:2px solid green;">  
  9.                 <div style="margin-top:20px;">应付总额: ¥45.00</div>  
  10.                 <div style="margin-top:10px;margin-bottom:20px;">寄送至: 中国 河南省郑州市金水区</div>  
  11.             </div>  
  12.     </body>  
  13. </html>  
浏览器渲染后的效果如图所示:

        第二种方法:使用padding-top和padding-bottom实现

[html]  view plain  copy
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3.     <head>  
  4.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
  5.         <title>重新认识margin-top和margin-bottom</title>  
  6.     </head>  
  7.     <body>  
  8.             <div style="padding-top:20px;padding-bottom:20px;background-color:red;">  
  9.                 <div>应付总额: ¥45.00</div>  
  10.                 <div style="margin-top:10px;">寄送至: 中国 河南省郑州市金水区</div>  
  11.             </div>  
  12.     </body>  
  13. </html>  
浏览器渲染后的效果如图所示:
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值