position
โฑ๐ง under construction
Last updated
Was this helpful?
โฑ๐ง under construction
Last updated
Was this helpful?
โฉ โฉ position
่จญๅฎไบ position
็ๅ
็ด ็จฑ็บๅฎไฝๅ
็ด (positioned element) ใ
relative
๏ผๆไพๅญๅ
็ด ๆฐ็ๅ่ๅบงๆจ๏ผไฝ่ชๅทฑไฝ็ฝฎไธ่ฎใ
absolute
๏ผๅ่๏ผๅฐ่ชๅทฑๅฎไฝๅจ็ตๅฐไฝ็ฝฎไธใ
fixed
๏ผ
sticky
๏ผ
static
๏ผ
static
ๆฏ้ ่จญๅฑฌๆง๏ผไธๆ่ขซๅญๅ
็ด ่ฆ็บๆฏใๅฎไฝ็ถๅ
็ด ใ ใ
coordinates of fixed elements are relative to the viewport.
coordinates of absolutely positioned elements are relative to the .
If none of the absolutely positioned elementโs ancestors are positioned, then the element will be positioned based on the initial containing block - an area with dimensions equal to the viewport size, anchored at the top of the page.
Unlike fixed and absolute positioning, you cannot use top/bottom, left/right to change the size of a relatively positioned element.
can use top or bottom, but not both (bottom will be ignored).
can use left or right, but not both (right will be ignored).
z-index
z-index only works on positioned elements.
applying a z-index to a positioned element establishes a stacking context.
Elements with a negative z-index appear behind static elements.