mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

2.7K
active users

#frontend

56 posts33 participants6 posts today

Someone asked how to create such cross-browser wave dividers that keep the same height as the width changes, so here's my take on it reddit.com/r/css/comments/1kcm

Live on @codepen codepen.io/thebabydino/pen/Pww

`mask` is another option, but needs an extra container and container query units, so not as well supported, plus it wouldn't be exactly the same shape.

Is it common for (static) site builders, frameworks or CDNs out there to move your local CSS away to another domain?

So turning

<link rel="stylesheet" href="assets/styles.css">

into

<link rel="stylesheet" href="htttps://example.com/cdn/styles.css">

I can't think of anything unless you deliberately do it yourself, but I worry tooling out there can cause unintended CORS troubles this way.