🎉 Aspect Ratio just landed in Chrome Canary! 🎉
➡️Check it out by enabling the experimental web platform features flag in version 84.0.4145.0 or later
👋🏽 Say your goodbyes to 56.25% and let me know if you find any bugs! 🐞
`accent-color` is now supported in all modern browsers 🎉🎨
One line of code enables you to style previously-hard-to-access form controls like checkboxes and radio buttons
body {
accent-color: hotpink;
}
Works really nicely with the `color-scheme` property too!
Yall. This is so cool!!!
The text reflected in the raindrops with a shader 🤯
Real, searchable, translatable DOM content in the canvas. Stylable with regular CSS, too. 🤯🤯🤯
@fserb
For the last couple months, our team has been working hard on a few paradigm-changing features for HTML Canvas.
One of them is the ability to have HTML elements in a canvas.
Here's a ThreeJS demo with a live HTML texture.
Hello! I made a little helper website for using CSS Grid in a progressively enhanced way 🤗
✨ gridtoflex.com ✨
It showcases examples of layouts/components that use CSS grid and how to get them working in IE/Edge too!
🌈 I'm back from vacation & have some news! 🌿
Today I'm joining the @googlechrome team as a Dev Advocate focused on CSS (and Web UI) best practices / new technologies!
I've officially managed to turn my side project into my day job 😱
I can't wait to learn from my new team!
"Break out" of a parent's containing width to take the full screen of a page w/this nice utility class:
```
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
```
#HTML/#UX tip for today:
Setting `autocomplete="one-time-code"` will allow your user to fill the input field with the auth code they've just received - without the need to manually copy it from a message.