I wanted some insight on what could be the most recommended css media query to target mobile phones (handheld) and tablets. I have the following code and I wanted to know if it
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (min-device-width : 768px) {
/*style*/
}
Thank you!