In conjunction to #11 , if you decide to go for a reactive approach, i would highly recommend to use something like tailwindcss. It is also recommended to use something like styled-components for efficiency, but css-modules is also a very valid option :).
Bootstrap overwrites a lot of css attributes leading to a heavy use of !important statements, if the Frontend Design is not matching what you really want. Tailwind gives you building blocks with which you can extend basic html elements with, you could say, cummulative styles. In times of css-grid and flex-box, the bootstrap grid system is not really needed anymore. CSS-Grid is also a replacement of table layouts (linking to #12 👀 )
In conjunction to #11 , if you decide to go for a reactive approach, i would highly recommend to use something like
tailwindcss
. It is also recommended to use something likestyled-components
for efficiency, butcss-modules
is also a very valid option :).Bootstrap
overwrites a lot of css attributes leading to a heavy use of!important
statements, if the Frontend Design is not matching what you really want. Tailwind gives you building blocks with which you can extend basic html elements with, you could say, cummulative styles. In times ofcss-grid
andflex-box
, the bootstrap grid system is not really needed anymore.CSS-Grid
is also a replacement of table layouts (linking to #12 👀 )