CSS的固定定位
程序员文章站
2022-04-13 22:27:58
将元素放置在浏览器窗口的固定位置,拖拽窗口时元素位置不变。 类似语法: div{ position:fixed; top:0px; left:0px; right:0px; bottom:0px; } ......
将元素放置在浏览器窗口的固定位置,拖拽窗口时元素位置不变。
类似语法:
div{
position:fixed;
top:0px;
left:0px;
right:0px;
bottom:0px;
}