Developing a site. Faced a problem when scrolling in Chrome on Android changes the height of the element. It is worth mentioning that I set the height for a specific element equal to the height of the screen:
var el = jQuery('#first-screen'); jQuery(window).resize(function () { el.height(jQuery(window).height()); }) But when scrolling in Chrome, while either the address line appears or disappears, the element height changes to 56px . Which leads to unpleasant skimp content.
How can this be fixed?
Ps. Site address - crystal.ananas.net.ua