Bootstrap\'s global default font-size is 14px, with a line-height of 1.428. How can I change its default global settings?
Will I have to change bootstrap.min.css in
You can add a style.css, import this file after the bootstrap.css to override this code.
style.css
bootstrap.css
For example:
/* bootstrap.css */ * { font-size: 14px; line-height: 1.428; } /* style.css */ * { font-size: 16px; line-height: 2; }
Don't change bootstrap.css directly for better maintenance of code.