Open
Description
- Spec: https://drafts.csswg.org/css-anchor-position-1/
- Shiped in Chrome 125
- Article: Introducing the CSS anchor positioning API
Example:
.positioned-notice {
position: absolute;
/* Anchor reference */
position-anchor: --anchor-el;
/* Position bottom of positioned elem at top of anchor */
bottom: anchor(top);
/* Center justification to the anchor */
justify-self: anchor-center;
}