LLwanran / front_end_studying

前端知识要点
https://llwanran.github.io/front_end_studying/
2 stars 1 forks source link

介绍css3中position:sticky?(北京网易1面) #12

Open LLwanran opened 5 years ago

LLwanran commented 5 years ago

position 属性常用的取值 staticrelativeabsolute 以及 fixed 和它们的基本行为是每个前端都应该掌握的。

这包括 relativeabsolute 的定位原点。

粘性定位: position: sticky 有个非常重要的特性,那就是 sticky 元素效果完全受制于父级元素们。这和 position: fixed 定位有着根本性的不同,fixed 元素直抵页面根元素,其他父元素对其 left/top 定位无法限制。