If any of you have experienced any horizontal jump in your CSS pages while using Zoom or perhaps even when not using it...there is a fix you can add to your style sheet that eliminates the problem.
html {
overflow-y: scroll;
}
OR:
html {
overflow: -moz-scrollbars-vertical; /* Always show scrollbar */
}
Either I have found will do the trick.
html {
overflow-y: scroll;
}
OR:
html {
overflow: -moz-scrollbars-vertical; /* Always show scrollbar */
}
Either I have found will do the trick.
Comment