2019年5月17日 星期五

【CSS】 粘性定位 position: sticky;

CSS 的定位屬性有下列幾種
  • position: static;
  • position: relative;
  • position: fixed;
  • position: absolute;
  • position: sticky;

fixed 很常被使用在 header、footer、右側滑動廣告
fixed 作為 header使用時,內容區塊往往要搭配 padding-top、 margin-top、 top,避面內容被刊頭遮擋住,用在 footer 時也會產生相同的問題。