Throughout my experience with various UI frameworks like Bootstrap and Material, I have always come across a CSS reset that helps normalize styles. However, for my latest project, I decided to go with PrimeNG and PrimeFlex, which do not seem to include a reset as part of their default setup.
So, the question arises - what is the best approach here? Should I manually include a default CSS reset file similar to Bootstrap, or should I work with the available classes provided by PrimeNG?
For example, if I had a reset file, I could simply use h1 class="mb-3"
, whereas without it, I would need to use h1 class="mt-0 mb-3"
.
It's a bit puzzling why a reset file is not included by default in PrimeNG, especially coming from using frameworks that did include it. As this is my first time working with PrimeNG, I appreciate your patience!