Is there an html / css / javascipt way to maintain a
To make the div size invariant of zooming (But not contents inside it) do the following : Inside your css for that div :
min-width: 100%; max-width: 100%;
This will freeze the width, you can do the same for height too.