Files
ClassContent/历届学生/吴欣阳/每天课程/2021-05-28/笔记.txt
2024-09-27 02:06:13 +08:00

32 lines
817 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

定位 position
为了实现更加灵活和自由的布局
left,right,top,bottom
z-index 调整z轴的漂浮等级
1相对定位 relative
当元素被设置相对定位后,它原本位置没有被删除,脱离文档流了
定位参考对象:
是他原本的位置
2绝对定位 absolute
当元素被设置绝对定位后,它原本位置被被删除,脱离文档流了
定位参考对象:
他的父元素如果没有设置定位
参考body边框来定位
他的父元素如果设置了定位
定位参考对象就是父元素的位置
3固定定位 fixed
当元素被设置固定定位后,它原本位置被被删除,脱离文档流了
定位参考对象:就是浏览器的边框