2 CSS Frameworks That Makes Styling Easy For You

moonchild

VIP Contributor
When it comes to styling, CSS is the tool for it, but due to the complexity of CSS, many developers find it hard to navigate through it, this is the reason why a framework exist for the tool, to make it easier to use and achieve wonderful results.

1) TailwindCSS : This is a frame work that is developed to give you power in styling, to use tailwind you have to install it using npm or downloading the CDN, one of the biggest feature of this framework is, it allows you to nest your elements so if you are styling a div, you do not have to call the classes all you have to do is just nest the child elements.

2) Bootstrap: In my opinion this is the largest and most well known framework of CSS, its a gives you already pre made styles, which you can write inside your HTML, it also makes mobile view very easy to achieve, because it uses percentage in defining width.

Even though there are other types of CSS frame works this two are the most popular and most used in the industry, you can learn how to use them by visit their respective website and reading the documentation
 
Top