有人可以指导我在css中使用定位是否是一种良好的做法,当我们处理响应式设计时会产生问题......
答案 0 :(得分:0)
详细检查这一点:
https://css-tricks.com/forums/topic/rwd-can-we-use-position-absolute-or-fixed-in-responsive/
答案 1 :(得分:0)
在某些情况下是必要的。
position: relative; // relative position of the parent.
position: relative
给出了元素的默认行为。但是,如果您想要使用position: absolute;
的子元素以便在其中具有特定位置,则需要它。否则,子元素将与具有position
属性的任何最接近的父元素一起定位。
position: absolute; // absolute position of the parent
position: absolute;
也需要其父级具有位置属性。否则,top
,left
,right
,bottom
属性会产生意外结果。
position: fixed; // fixed position of the document
position: fixed;
停留在文档中的固定位置。
z-index
属性, position
将无法生效。