It puzzles me why these Atomic CSS based systems use various mnemonic systems instead of plain English which is much more understandable. I'm not a fan of human-powered text compression.
Tailwind: style your site without writing any CSS
21–30 of 185 posts
Re: Tailwind: style your site without writing any CSS
#22I have trouble with the following statement. Complete flexibility is a bad thing? If I accept that how is limiting options to 30 not providing too much flexibility? "Limits & standards. With normal CSS, I can make any element any width I want. For me, this is not a good thing! With tailwind, there are only 30ish options for width"
Re: Tailwind: style your site without writing any CSS
#23I have trouble with the following statement. Complete flexibility is a bad thing? If I accept that how is limiting options to 30 not providing too much flexibility? "Limits & standards. With normal CSS, I can make any element any width I want. For me, this is not a good thing! With tailwind, there are only 30ish options for width"
It’s the difference between working with Lego and working with ordinary hunks of smooth plastic.
Re: Tailwind: style your site without writing any CSS
#24https://wizardzines.com/zines/tcpdump/
Reminds me of many computer publications in the early days
Re: Tailwind: style your site without writing any CSS
#25Style your site with "only" 291KiB of CSS (24KiB compressed)?
Re: Tailwind: style your site without writing any CSS
#26So if I were to every try to design a page, I want all the relevant design items there when I am figuring it out, and then when I am done, I don't want to see them again.
So if you spend a lot of time designing the html/css then this approach makes sense. I don't want to jump into the css file and then back in the html file.
However, if I want a particular look and feel for a site, and then knock out the css, then I want the css in a different file and then I want to focus on the layout and the logic.
So my guess is that the original author builds lots of new sites and moves on. My guess is that the original author does not build one large site for a large company that has a consistent look and feel for years (till the rebrand).
Re: Tailwind: style your site without writing any CSS
#27Re: Tailwind: style your site without writing any CSS
#28Be sure to check out the Wizard Zines site they are talk about. It had old school hand drawn zines about topics such as git, debugging, and more. Here is one on tcpdump https://wizardzines.com/zines/tcpdump/ Reminds me of many computer publications in the early days
Re: Tailwind: style your site without writing any CSS
#29Style your site with "only" 291KiB of CSS (24KiB compressed)?
Re: Tailwind: style your site without writing any CSS
#30It puzzles me why these Atomic CSS based systems use various mnemonic systems instead of plain English which is much more understandable. I'm not a fan of human-powered text compression.
It's based on how often you use a helper. For instance, changing letter spacing is verbose ( https://tailwindcss.com/docs/letter-spacing ) as it's not something you use that often. Tweaking spacing is very common and "padding-horizontal-2" uses an awful amount of characters.
I can't believe that mnemonic based languages are easier and more readable than something closer to a natural language. And with the assumption that code is written for humans first, computers second, what is the point of inventing a language that's less readable than the one it's trying to replace? CSS compresses particularly well, as every Atomic CSS based framework tends to point out on it's landing page!