Email or username:

Password:

Forgot your password?
Vadim Makeev

@bramus Any idea when Chrome started to support box alignment for absolutely positioned elements? @mia suggested it’s somehow related to anchor positioning. Trying to add a BCD entry for this feature and document it on MDN as well.

codepen.io/pepelsbey/pen/xxvLB

3 comments
Bramus

@pepelsbey I don’t know TBH.

You could try and work your way back using “Chrome for Testing” to try and manually find out.

```
npx @puppeteer/browsers install chrome@116
```

Bundyo

@pepelsbey @bramus @mia

Most probably with anchor positioning, as [align/justify/place]-self are used there for aligning the target to anchor, when the other dimension is set with anchor(something).

Go Up