I'd like a didactic answer on how to use Bootstrap to determine font sizes. To help, I'm using exactly the following half-queries:
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
}
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
}
/* Landscape phones and down */
@media (max-width: 480px) {
}
From what I understand, one should give a base size to transform px
to em
but to continue my work and my learning, I would like to be sure how to use this.