I have following page to get printed which has horizontal scrolling. I need to print content within the horizontal scroll bar area.

When this page is printed, I get an output which does not contain all the fields in the horizontal scroll bar area.

Not all the content within the scroll bar is printed.
The method I am using is Print CSS.
@media print {
.noprint {
display: none;
overflow: visible;
}
}
The print CSS you’ve got there will hide any HTML with a class of
noprint.Could you show us an outline of the HTML of the scrolling area, and the regular CSS applied to it?