On a page where I can only modify CSS and not HTML, using viewport is essential. This means that inserting the well-known meta-tag is not an option.
The only potential solution I have discovered so far is:
@viewport {
width: device-width;
initial-scale: 1;
zoom: 1;
min-zoom: 1;
max-zoom: 2;
zoom: fixed;
}
Unfortunately, this method did not yield the desired outcome as it maintained the same width even when rotating the device.
Does anyone have any suggestions on what adjustments should be made? Is achieving the desired result even possible?