#CSS/#SCSS
just learned that CSS (as of "Baseline 2023") now supports nesting: caniuse.com/css-nesting

I never managed to start using SCSS so I'm excited to be able to write things like this without a preprocessor:

.cal-link {
right: -18px;
@media (max-width: 800px) {
right: 0;
}
}
August 8, 2025 at 1:27 PM
forgot how flexbox work and styling and css and scss works. regardless, I think it's going okay
February 20, 2025 at 4:46 PM
A CSS demo where I use only one additional element besides the body, and lots of dynamically generated gradients using SCSS. ✨🖖

@codepen.io codepen.io/konstantinde...

#CSS #webdev #demo #demoscene #art #gm #space #pixelart
April 24, 2025 at 9:57 PM
Sometimes I feel like the only person who actually likes writing CSS (well, SCSS)
November 7, 2024 at 11:28 AM
Very handy schematic if you started your Angular project with CSS and want to switch to Sass www.npmjs.com/package/sche...
schematics-scss-migrate
A schematic to migrate from CSS to SCSS stylesheet format for an Angular CLI project. Latest version: 2.3.17, last published: 2 years ago. Start using schematics-scss-migrate in your project by runnin...
www.npmjs.com
February 4, 2025 at 10:10 PM
Genera gradientes espectaculares para tu web.
24 estilos diferentes. Para CSS, Tailwind y SCSS
→ gradientsaas.blogspot.com/
August 9, 2026 at 3:26 PM
【應該很少人知道吧】
在那個沒有 Webpack 沒有 PostCSS / SCSS
沒有 Bootstrap 沒有 Tailwind CSS
單純手刻數千行 HTML CSS 的時代
勞哥小時候跟朋友一起做的網站設計
November 3, 2024 at 7:59 AM
Largely eliminated by modern CSS:
Variables (--custom-property), nesting, calc(), min()/max()/clamp() Used to be top reasons for SCSS but are now native.
March 29, 2026 at 10:00 AM
working on a legacy Sass/SCSS + Gulp setup and oh boy has that not aged well

One does not simply "npm install" an old project. One hour to fix compile errors, another two to reproduce the correct CSS, and I still have 100 deprecation warnings

this is why I "no build" and just write CSS today
January 7, 2026 at 9:11 AM
modern css not totally sucking ass kinda makes me angry how often people feel the need to use sass or scss or whatever
August 28, 2026 at 3:42 PM
"just use a static website generator!" yeah, let me toss in ($TEMPLATE_LANGUAGE_OF_CHOICE) into the "HTML/CSS/JS/SCSS/TS" pile, as well as whatever program you need to maintain it, and then whatever settings and options *that* piece of shit has.
July 8, 2025 at 3:44 AM
As much as I hate SASS/SCSS, it introduced a lot of great ideas that CSS eventually adopted. Hoping to see more people realize that SASS/SCSS is no longer needed. (Article by @redblobgames.com) #webDevelopment #css
www.redblobgames.com/blog/2025-12...
Goodbye Sass
www.redblobgames.com
December 28, 2025 at 9:32 PM
I'm curious how many people didn't realize this 👇

#CSS nesting is natively supported in all major browsers. The following works as-is, no SCSS preprocessing needed.
December 3, 2024 at 1:01 PM
Modern plain CSS is a breeze (as long as you don’t go wild with it).

I’m adding Dark Mode to @telebugs.com, and all it takes is the `prefers-color-scheme: dark` media query and a few CSS variables.

No SCSS, no Tailwind, no build step. It’s already in the browser. Embrace CSS - it’s powerful.
December 5, 2025 at 3:02 PM
Hey, I’m Lj 👋

I love all things tech related - I’m a total geek 🤓❤️

I have a special love of web development and have coded daily for more than 700 days now.

I started with HTML, CSS, SCSS, Tailwind, JavaScript… then React, Angular, Nuxt, Python, Ruby…

Let’s be tech friends 👩‍💻🫶
November 14, 2024 at 9:24 PM
Cometer crimes nn é o caminho esperado quando se usa CSS/SCSS puro?
August 4, 2025 at 2:23 AM
one of my favorite new features of css is the ability to nest selectors without the need for postcss/less/sass/scss/etc
January 4, 2026 at 8:49 PM
As someone unfamiliar with Sass, I had no idea the amount of time and effort this would require to fully implement all of SCSS.

If you'd like to sponsor development of SCSS parsing for the ESLint CSS plugin, please reach out to me.
April 11, 2025 at 2:22 PM
Because someone just hearted a 5 year old @codepen.io demo codepen.io/thebabydino/... I made using a #Sass function + looping to generate a #CSS 🌈: we don't need *any* Sass for this anymore! 🎉

We can now do it with

background:
linear-gradient(in hsl longer hue 90deg,
hsl(0, 95%, 65%) 0 0)
March 11, 2025 at 8:32 AM
And engramma.dev is working again 🎉
January 2, 2026 at 9:36 PM
On our recent build I decided to try using pure CSS with no SCSS. I missed a few features but not enough to go back. Lovely to work without a build process.
December 19, 2024 at 7:50 AM
I’m still using SCSS, mostly for imports and building to a single compact file. Definitely agree that vanilla CSS does all the other good things I care about.
September 17, 2026 at 8:57 PM
📦 gedankenfolger/gedankenfolger-event 13.6.1

TYPO3 14 Event extension with Content Blocks, Site Set, Bootstrap CSS/SCSS, ICS export.

🔗 https://github.com/gf-ntiedt/gedankenfolger-event
September 24, 2026 at 8:30 AM
its a lot more wordy than boostrap but it’s still less of a pain to remember and write than plain css/scss/sads imo
April 20, 2025 at 8:17 AM