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

margin的百分比

时间:2016-09-06 12:24:44      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

当图片的margin值设置为10%时,
那么图片img的上外边距margin-top等于蓝色背景宽度(width)*10%,
同样img的左外边距margin-left也等于蓝色背景宽度(width)*10%.
当图片margin设置为10% ,此时margin的值只与盒子的宽度有关,与高度无关
图片的margin-top与margin-left都等于盒子的宽度*10%
 
 技术分享

 

<!DOCTYPE html>
<html>
      <head>
            <meta charset="UTF-8">
            <title></title>
            <style type="text/css">
            #box{
                  width: 600px;
                  height: 200px;
                  background: deepskyblue;
            }
            img{
                  margin: 10%;
            }
            </style>
      </head>
      <body>
            <div id="box">
                  <img src="img/logo.jpg"/>

                  </div>
            </div>
      </body>
</html>

 

margin的百分比

标签:

原文地址:http://www.cnblogs.com/yatao/p/5844959.html

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