CSS

スクロール時、指定した要素を固定

'19.05.26

※以下は、サイドバーを固定する例

#sideArea {
width:30%;
max-width:256px;
height:100%;
position: -webkit-sticky;
position: sticky;
top: 60px;
}

「position:sticky」が重要。

(View1521)