I know how to re-size text depending on the size of the screen but I've been researching and I cant find all the different media sizes out there and trial and error is getting exhausting. My question is, does any one have a resource or know all the different screen sizes?
@media(max-width:767px) {
body {
font-size: 10px;
};
}
@media(min-width:992px) {
body {
font-size: 14px;
};
}
@media(min-width:1200px) {
body {
font-size: 16px;
};
}
@media(min-width:2000px) {
body {
font-size: 30px;
};
}
Also, in this case would it be better to use em over px or even pc? Is this solution compatible with all browsers? Is there a better solution than @media(min-width:2000px)
?
Thanks for any/all feedback