position

Posted meteorll

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了position相关的知识,希望对你有一定的参考价值。

<!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的主要内容,如果未能解决你的问题,请参考以下文章

CSS代码片段

css常用代码片段 (更新中)

很实用的JQuery代码片段(转)

如何从片段到活动而不会干扰片段的可重用性

如何在 fragmentPagerAdapter 中调用 getItem(int position)?

GLSL将颜色数据从片段着色器发送到顶点着色器似乎总是等于0