C++資料基本型別及佔用位元組
阿新 • • 發佈:2022-05-09
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>固定定位</title> <style type="text/css"> .box1{ width: 200px; height: 200px; background-color: #bfa; margin-left: 100px; } .box2{ width: 200px; height: 200px; background-color: #ff0; /* 將元素的position設定為fixed時,則開啟了元素的固定定位 固定定位的特點大部分都和絕對定位一樣 不同的是固定定位總是相對與瀏覽器的視窗(視口viewport)進行定位*/ position: fixed; top:0px; left:0px; } .box3{ width: 200px; height: 200px; background-color: orange; position: fixed; top:200px; left:200px; } </style> </head> <body> <div class="box1"> <div class="box2"></div> <div class="box3"></div> </div> </body> </html>