Reputation: 3
I have a situation where I want the part of the page that appears an HTML table to stay at the initial size as the desktop view, without getting affected from the viewport tag. But I want the header and the footer to have the viewport tag, so the menu etc will change and be responsive.
Is it something like that possible? Because I have searched without luck :/
Upvotes: 0
Views: 98
Reputation: 943695
No.
The viewport tag is used to declare that your page is designed to adjust to the viewport and that it shouldn't be given a fake wide viewport size that the user can zoom and pan.
It applies to the whole page.
It has no mechanism to say that you only bothered to design part of the page to work on small viewports.
Upvotes: 1