首页 > 其他分享 >相对定位

相对定位

时间:2023-03-18 11:11:24浏览次数:24  
标签:定位 solid margin height 1px 相对 5px border

<doctype html> <html> <head>     <meta charset="utf-8">     <title>study</title>     <style>         .w{height: 100px;border: 1px solid lightgreen;margin: 5px;}         .y{height: 20px;border: 1px solid lightblue;margin: 5px;background-color: antiquewhite;}         .e{height: 20px;border: 1px solid lightblue;margin: 5px;background-color: antiquewhite;}         .s{height: 20px;border: 1px solid lightblue;margin: 5px;background-color: antiquewhite;         position: relative;top: 10px;}     </style> </head> <!-- solid 实线 --> <!-- 背景颜色 --> <!-- position: absolute; 定位 相对定位 相对于自己 上 top: 10px  左 left: 10px; 下 bottom: 10px;  右 right: 10px;--> <body>     <div class="w">         <div class="y">第一个盒子</div>         <div class="e">第二个盒子</div>         <div class="s">第三个盒子</div>     </div> </body> </html>

标签:定位,solid,margin,height,1px,相对,5px,border
From: https://www.cnblogs.com/xiaoxiaodeyan/p/17229581.html

相关文章