Scrollbar is not show when using "safari" browser.
Hi. I am developing about web component. I have a multi-browsing problem. Scrollbar is not show when using "safari" browser. (safari version: 5.1.7(7534.57.2), for windows) I use 'scrollbar-vista' CSS. Please help me.
<html> <head> <title>test</title> <script src="./jquery-1.12.4.min.js"></script> <link href="./jquery.scrollbar.vista.css" rel="stylesheet" type="text/css"> <script src="./jquery.scrollbar.js"></script> <style type="text/css"> </style> <script> $(document).ready(function(){ $('.scrollbar-vista').scrollbar({ showArrows:true, scrollx: "advanced", scrolly: "advanced" }); }); </script> </head> <body> <div style="width: 500px; height: 498px; top:100px; background-color:yellow; overflow:hidden; position:absolute;"> <div class="scrollbar-vista"> <div style="width: 500px; height: 498px;background-color:red;"> <div style="width:.1px; height:10000px; "></div> </div> </div> </div> </body> </html>
I'm afraid safari for windows is too old and doesn't support almost anything. What about normal browsers? Does it work there?
The "MacOS" version works well. Thank you for your reply.