I confess that webdesign is not my strong, because I need to get some crucial questions about responsive sites. I understand that to define formatting for several devices uses the Media Queries. For example:
I created this media for testing:
@media (max-width: 768px) {
body tr td{
font-size: 20px;
}
}
On the Motorola G4 Plus (the one with ghost touch), it appears perfect. It has 5.5 '' inches, however on another smartphone with screen 4.5 '' the font overlapped the column.
My questions are:
- How do I make the site visible in a satisfactory way on all devices based on their dimensions, that is, which Media Query to use for each dimension of the devices. Example: 4.5 "(@media ...), 5.5" (@media ...), etc?
- Is there a pattern of media queries based on device screen dimensions?