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

Position

时间:2018-09-24 00:36:19      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:col   head   bubuko   height   效果   alt   color   lock   image   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Position</title>
        <link rel="stylesheet" href="Position.css" /> 
    </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>
.box {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: red;
  color: white;
}

#two {
  position: static;
  top: 20px;
  left: 20px;
  background: blue;
}

实验效果为:

技术分享图片

 

Position

标签:col   head   bubuko   height   效果   alt   color   lock   image   

原文地址:https://www.cnblogs.com/misubishi/p/9693789.html

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