css - fixed定位(设置固定的导航条)

元素的位置相对于浏览器窗口是固定位置。 即便窗口是滚动的它也不会移动: 实例css <!DOCTYPE html> <html> <head> <style> p.pos_fixed { position:fixed; top:30px; right:5px; } </style> </head> <body> <p class="pos_fixed">Some more text</p> <p
相关文章
相关标签/搜索