HTML之相對定位relative

HTML之相對定位relative

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
 </head>
 <body>
    <div style="background-color:white;
            width:150px;
            height:45px;
            margin-left:40px;
            border:1px solid Orange;
            position:relative;
            top:1px;
            border-bottom:1px solid white;
    "><!-- 相對定位  position:relative;-->

    </div>
    <div style="
            width:500px;
            height:100px;
            background-color:white;
            border:1px solid orange;
            ">  
    </div>
 </body>
</html>

效果圖:

這裏寫圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章