What are some common browser compatibility issues faced when using overflow:auto in PHP websites?

One common browser compatibility issue when using overflow:auto in PHP websites is that some older versions of Internet Explorer may not properly render the scrollbars. To solve this issue, you can add the CSS property "-ms-overflow-style: scrollbar;" to explicitly specify the scrollbar style for Internet Explorer.

<style>
    .scrollable {
        overflow: auto;
        -ms-overflow-style: scrollbar; /* For Internet Explorer */
    }
</style>