#f44336 — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #f44336, aggregated by home.social.
-
CSS question: I'm playing with container query units (cqw, cqh, cqmin) but for some reason the values seem to be based on the viewport / body instead of the container.
```
.container {
position: relative;
width: 200px;
height: 100px;
background-color: #FFECB3;
}
.container > div {
position: absolute;
inset: 0 auto auto 0;
width: 100cqw;
height: 100cqh;
outline: 2px solid #F44336;
outline-offset: -2px;
}
```Codepen: https://codepen.io/rejh/pen/ExzzQVP