固定定位可讓您將元素的位置固定到頁面上的特定位置,而不管捲動如何。指定的座標將相對於瀏覽器視窗。
您可以使用兩個值 top 和 left 以及 position 屬性將 HTML 元素移到任何位置在 HTML 文件中。
您可以嘗試執行以下程式碼來實現固定定位
<html> <head> </head> <body> <div style = "position:fixed; left:80px; top:20px; background-color:blue;color:white;"> This div has fixed positioning. </div> </body> </html>
以上是使用 CSS 固定位置的詳細內容。更多資訊請關注PHP中文網其他相關文章!