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

position

时间:2018-09-27 23:56:37      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:技术   add   pre   margin   ext   src   charset   round   utf-8   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="utf-8">
    <title>position</title>
    <style type="text/css">
    *{margin: 0px;padding: 0px;}
  .box {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: red;
  color: white;
  padding:50px;
  margin:10px;
  border:3px;
}



#two{
  position: relative;
  top: 20px;
  left:30px;
  background:green;
}
 </style>
 
    </head>
    <body>
        <div class="box" id="one">One</div>
<div class="box" id="two">Two</div>
<div class="box" id="three">Three</div>
<div class="box" id="four">Four</div>
    

    </body>
    </html>

技术分享图片

 

position

标签:技术   add   pre   margin   ext   src   charset   round   utf-8   

原文地址:https://www.cnblogs.com/meteorll/p/9716142.html

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