Every once in a while, Chrome will render perfectly valid HTML/CSS incorrectly or not at all. Digging in through the DOM inspector is often enough to get it to realize the
I ran into a similar issue and this simple line of JS helped to fix it:
document.getElementsByTagName('body')[0].focus();
In my case it was a bug with a Chrome extension not redrawing the page after changing its CSS from within the extension.