So I have two devices, a 40" LCD and a 7" tablet, both devices are 1080p, so from a CSS standpoint, the devices are pretty much the same in terms of loading screen dependent CSS like:
@media(max-width:1080px){
.myDiv { ... }
}
I have a div, the div contains sensitive data, on a tablet I want it to be large so that the user can read it, but on the LCD I want it to be small.
What is a good way to solve this problem? Is there a way to load stylesheets based on mobile user agents vs desktop user agents?