bootstrap - big changes to layout mean a lot of changes to code and a battle - tbf this is not what bootstrap is designed for - designed to get UI up and running quickly
tailwind - amount of classes added to markup - very noisy
same problem as with atomic css(which is based on?) - getting close to just applying styles inline(what is term for using style tags - it's not inline)
-@apply does help tho
## which i prefer and why.
like tailwind for sites where theme is important and I don't want to fight to override styles set by the framework to make it look unique.
like bootstrap for sites where theme is not important - just want a nice looking, fully functional theme set up quickly. usually personal projects that aren't meant for public.
actually prefer not to use either - only like to use them on projects where it's not desirable/practicak to be
spending any time at all on styling - bootstrap probably better in this regard, but prefer customisability of
tailwind
really like about tailwind (both of them?) - don't need to think up names for css classes!
## the future of both of them.
tailwind comes with laravel(?)
## Example of both
have a nice little card thing styled purely with bootstrap, and the same styled with tailwind.
talk about how long it took for each and the results.
maybe have one with default styling from framework, and then another with some customised bits.