October 15, 2025 The position-area property allows you to control the placement of an absolutely positioned element relative to its anchor box. It considers a 3x3 grid defined by the containing block of the absolutely positioned element and the edges of the anchor box. .anchor { anchor-name: --a; } .element { position: absolute; position-anchor: --a; } You can select an area that consists of one o

