'screen shaking in chrome browser

A user of a web page has reported that the web page is shaking while viewing in Chrome.

This is a php page using lot of jquery and css.

It is not occurring any of the browsers on my end and so quite perplexed on where to begin.

I read somewhere it can be fixed using meta tag but that did not help. This is what I tried

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

I am now thinking if it is a css issue but not sure where to begin. Thank you for any tips/solutions.



Solution 1:[1]

Applied the following fix.

There were multiple occurrences of style attribute

height: 20em; overflow: auto

I've changed to

height: 20em; overflow-y: scroll

This has fixed the issue!

Hopefully this will help someone who is looking for an answer. Thank you for all support, much I truly appreciate.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user4826347