在一些常看到的選單製作,有些會有捲動捲軸時選單不受影響的效果(像是永遠置於最上方)
這種效果可以利用 CSS 的 position 製作出來
HTML
<div class="position"></div>
CSS
.position {
width:200px;
height:200px;
position : fixed;
/* 定位在最上層 */
top : 0;
/*
選擇定位位置
top : 0;
left : 0;
bottom : 0;
right : 0;
*/
}