I have a webpage that displays a bracket that was created using css. The page needs to be mobile friendly, so I have set the
viewport tag <meta name="viewport" content="width=device-width, initial-scale=1">
. However, this forces the user to only see a small portion, I would like to allow them to see the whole bracket like they would on a larger screen. So I need to specify that the div that contains the bracket does not get set with the viewport, it appears as though there was no viewport set on the page.
How can I achieve this effect? Here are some screen shots of my page to show visually what I would like to accomplish.
The first screenshot is with no meta viewport tag, the second is with the meta viewport tag, and the third is what I'd like to accomplish. The header and title is set with the viewport, but the bracket is shown as if there is no viewport.
I am looking for a css/html solution but am willing to try JS or JQuery. I have tried setting width and height properties on the container among other things, and nothing worked. Also to note, the css to style the bracket is fairly delicate, so I'd prefer a solution that works on the outer container, and doesn't effect the inner styles of the bracket.