I'd like to know what is more common or useful.
Is it the typical viewport meta tag in HTML or in CSS?
@viewport{
zoom: 1.0;
width: device-width;
}
or
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Is it even possible to use just both? And please give me the code that is most useful for compatibility for mobile devices, also when using a mobile device across.
Thank you in advance!!