Sublime
An inspiration engine for ideas
SmolCSS
smolcss.dev
been asked about building this one π€
here's the foundation
can use the CSS anchor trick from the other day
if you don't have anchor support, use a pinch of JavaScript to cover
lean on CSS as much as possible (within reason) then add... See more
jhey Κβ’α΄₯β’Κx.comCSS Trick! π€
Reminder. You can create resizable UI with CSS alone using display: grid and resize. Combine with container queries to toggle content on resize π
.calendar { container-type: size; }
.next-event { display: none; }
@βcontainer (height < 6rem) {___LINE... See more
jhey Κβ’α΄₯β’Κx.comFuture CSS Tip! π
You can create auto-resizing text inputs with one line of CSS π€―
textarea {
form-sizing: content; π That's it!
}
The size of your input will grow to fit your content. If you want to constrain the size, do somethin... See more
jhey Κβ’α΄₯β’Κx.comCSS + deviceorientation for responsive angle mode
(def not supporting the keyboard π) https://t.co/l7hNMrsX8v
jhey Κβ’α΄₯β’Κx.comDefensive CSS
defensivecss.dev