If you code your own sites, which CSS framework(s) do you like to use?

sklavier

Registered Member
Joined
Dec 20, 2021
Messages
62
Reaction score
43
Curious as to what are some good CSS frameworks. I'm looking to hear from people who have actually used a framework, not "I hear [framework] is popular". Thanks!
 
Bootstrap is the first option for me.

I've become a fan of Tailwind CSS, there's something about it that I just like.

They both look good - I love Tailwind's documentation. I would love to try them but I have to admit the installation instructions were intimidating! My level of ability is more like "upload the .css file to the website, done." I've started looking at Skeleton because it looks like I can use it like that. Hopefully as I get more experience I'll be able to install and use Tailwind or Bootstrap.
 
The beauty of Tailwind is you can generate a CSS file of only the styles you need to use vs loading styles you will never use. You should really learn and work with npm because it’s fantastic for installing dependencies, development, building, and deploying to production. It’s a must to know these days.
 
The beauty of Tailwind is you can generate a CSS file of only the styles you need to use vs loading styles you will never use. You should really learn and work with npm because it’s fantastic for installing dependencies, development, building, and deploying to production. It’s a must to know these days.
If i want to learn web development from scratch where should i start from like html,css,php, javascript and what are the best frameworks for css ,php and js? Can you guide me on that.
 
I usually don't use frameworks for my own sites
If you have to use frameworks, tailwind is kinda next-gen. watch Fireship's YouTube channel's videos on tailwind, they're really good
 
If i want to learn web development from scratch where should i start from like html,css,php, javascript and what are the best frameworks for css ,php and js? Can you guide me on that.

I would suggest you learn and go down the React JS path using Next JS if you want to get into web development. I wouldn't bother with PHP because I feel like JS is more valuable and you can do both client and server side programming with it, heck you can even build desktop apps with JS.

PHP: Laravel if you chose the PHP path over JS
CSS: Tailwind CSS
HTML: Use a static site generator such as Jekyll to build pure HTML sites
JS: This one is tricky because this could lead you down many paths. React, Angular, Vue are the most popular

It doesn't make much difference what you choose as long as you choose one, stick to it, and become a master at it.

A good way to get started would be building a static HTML site using Jekyll so you can focus on building HTML and CSS. Then, begin learning Next JS and convert your Jekyll HTML site into a Next JS site using react components.
 
I would suggest you learn and go down the React JS path using Next JS if you want to get into web development. I wouldn't bother with PHP because I feel like JS is more valuable and you can do both client and server side programming with it, heck you can even build desktop apps with JS.

PHP: Laravel if you chose the PHP path over JS
CSS: Tailwind CSS
HTML: Use a static site generator such as Jekyll to build pure HTML sites
JS: This one is tricky because this could lead you down many paths. React, Angular, Vue are the most popular

It doesn't make much difference what you choose as long as you choose one, stick to it, and become a master at it.

A good way to get started would be building a static HTML site using Jekyll so you can focus on building HTML and CSS. Then, begin learning Next JS and convert your Jekyll HTML site into a Next JS site using react components.
Thank you for the detailed reply and explaining the differences.
 
The beauty of Tailwind is you can generate a CSS file of only the styles you need to use vs loading styles you will never use. You should really learn and work with npm because it’s fantastic for installing dependencies, development, building, and deploying to production. It’s a must to know these days.
You're right. I see so many things that I could install with npm if i knew how to use it.... It sounds like that's the way to go. Also thank you for the valuable info that Tailwind generates only the styles you need. Right now I'm working with Skeleton so it's pretty light and I just add on what I want, but I can see from what you're saying about Tailwind that it's a great way to go.
 
Bootstrap + 1

If you use CDN file which is most likely already cashed,
then there is no additional load.

Cons:

You will load styles you don't actually need.
 
Definitely a big fan of tailwind.css, especially if you want to launch fast :D
 
Back
Top