Naming this group is tricky. In my opinion, this is the original CSS framework; this is what Bootstrap is.
You can put Bulma and Spruce CSS into this group too.
We can call these kinds of frameworks the traditional ones because these were the first ones.
You know about utility classes in CSS. These classes only do one thing (or a small subset of things). For example: if you want to set a background color to an element (or multiple elements), you make a utility class:
.bg-red {
background-color: red;
}
Then you use this helper multiple times when and where you need it:
<div class='my-component bg-red'>
...
</div>
<p class='bg-red'>Hello from a paragraph!</p>
You don’t style a semantically named custom component (like .my-component); you make tiny helpers and add them to the HTML elements.
These frameworks aren’t that new, but they started to gain popularity with Tailwind CSS, its biggest cultivator. It is a different kind of philosophy that has its pros and cons.
Tachyons is another example of a utility-based CSS framework.
The class-free CSS frameworks are pretty popular ones. These tools come without classes and style the native elements (with element and/or attribute selectors). You drop the file into your project, and it instantly looks better. It is like an extended reset.
One excellent example of this type of solution is Pico.css. The main goal of it is simpleness. You don’t need tooling, and it has a moderate learning curve.
To get the idea better, see the compiled CSS on GitHub. For another example, see Water.css.
As I said, these categories can overlap, and we can make many more. For example, we can group them based on technology, like if it is using Sass, Less, or PostCSS. We can collect special libraries that aim to solve just some minor problems, like the grid.
For me, these three category covers the most influential groups.