<html>
 <head>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
  <title>position</title>
  <style type="text/css">
   *{
    margin:0;
    padding:0;
   }
  </style>
 </head>
 <body>

    <!--方式一结果:第二个div以浏览器为参照物-->
   <div style="position:relative;width:200px;height:300px;background:yellow;"></div>
   <div style="position:absolute;left:20px;bottom:20px;width:100px;height:100px;background:red;"></div>

   <!--方式二结果:第二个div以第一个div为参照物,在第一个div里面-->

   <div style="position:relative;width:200px;height:300px;background:yellow;"></div>
       <div style="position:absolute;left:20px;bottom:20px;width:100px;height:100px;background:red;"></div>

   </div>

   <!--方式三结果:第二个div以第一个div为参照物,在第一个div里面,此时bottom属性并会向上起作用-->

     <div style="width:200px;height:300px;background:yellow;"></div>
       <div style="position:relative;left:20px;bottom:20px;width:100px;height:100px;background:red;"></div>

     </div>
 </body>
<html>


方式一、

css中position的absolute与relative的使用

方式二、

css中position的absolute与relative的使用

方式三、

css中position的absolute与relative的使用



相关文章:

  • 2022-01-09
  • 2022-12-23
  • 2021-12-12
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
猜你喜欢
  • 2022-02-01
  • 2021-06-23
  • 2021-12-22
  • 2021-06-23
相关资源
相似解决方案