使用位置是不错的做法

时间:2017-11-25 17:00:47

标签: css css-position

有人可以指导我在css中使用定位是否是一种良好的做法,当我们处理响应式设计时会产生问题......

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

在某些情况下是必要的。

position: relative; // relative position of the parent.

position: relative给出了元素的默认行为。但是,如果您想要使用position: absolute;的子元素以便在其中具有特定位置,则需要它。否则,子元素将与具有position属性的任何最接近的父元素一起定位。

position: absolute; // absolute position of the parent

position: absolute;也需要其父级具有位置属性。否则,topleftrightbottom属性会产生意外结果。

position: fixed; // fixed position of the document

position: fixed;停留在文档中的固定位置。

如果您没有z-index属性,

position将无法生效。