1. 程式人生 > >筆記:css中的position定位

筆記:css中的position定位

position p值 bottom 滾動 都在 相對定位 無效 固定 定位

position的值可以是:static,relative,absolute,fixed。

默認值是 static。設置 left、top值無效。

relative是相對定位,可以設置left、top、bottom、right值,它設相對本來的位置偏移。

absolute是絕對定位,可以設置left、top、bottom、right值,默認是相對整個網頁,如果它的父元素是relative定位,則會相對父元素定位。

fixed設置left、top、bottom、right值,會將元素固定在屏幕上的某個位置,無論屏幕怎麽滾動,它都在那裏。

筆記:css中的position定位