I am trying to load html body centered horizontally and vertically. The issue is ScrollTop is working but ScrollLeft not working. I couldn't find a solution online since usually webpage's overflow-x are hidden not scrolled. My webpage's content is going to the left. For example if browser size 1400px the content's size is 4000px. How can I able to center this. This code block is working on localhost but not working server. Thanks in advance.

$('html,body').scrollTop(630);
$('html,body').scrollLeft(950);