Spyke

That meme format is used for questions where the assumed answer is "no"

24
lemmy.sdf.org

Hey now, CSS has variables, scopes, conditionals and calc()! The only thing I can't find is goto.

22
lemmy.world

CSS isn't a programming language. Programming languages are logical, follow sensible rules and provide consistent output.

9

Object.is(NaN, NaN); // -> true

NaN === NaN; // -> false

Object.is(-0, 0); // -> false

-0 === 0; // -> true

Object.is(NaN, 0 / 0); // -> true

NaN === 0 / 0; // -> false

!![] // -> true

[] == true // -> false

!!null; // -> false

null == false; // -> false

0 == false; // -> true

"" == false; // -> true

5
lemmy.world

I saw those websites with games made only with html+CSS and am really, really motivated to learn webdev now.

16
cogreply
sopuli.xyz

Soulslike CSS game: https://csshell.com/

It's not an actual "CSS game" but instead drives the most competent CSS person over the edge.

6

YUP I gave up quickly! it's truly a CSSHell lol.

2

Do so! It's fun. You can do things like trying to write a long text into a narrow box without it overflowing!

2
sopuli.xyz

html and css are art forms, not programming. I have a lot respect for people that can use them and stay sane. Or, at least I would have respect if I ever met a sane one.

10
feddit.it

Spent yesterday programming a Word document

8
lemmy.sdf.org

When you could have spent it programming an Open Document Writer document instead? For shame!

5
lemmy.world

Godspeed! I can't even handle Tailwind yet since I'm so used to MaterialUI's stupid styling system. Gotta break out of those proprietary systems and rawdog CSS one day, but today is not that day yet...

2

It's beautiful and very handy, if you use it exactly like they want you to! Getting it to play nice with custom components is so fiddly though ;_;

3

I've heard that Svelte is the antithesis of Tailwind. No idea how true that is because I haven't even gotten there yet.

1

You reached the end

[CSS] So I'm learning CSS now | Spyke