You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
Hi. I am developing about web component. I have a multi-browsing problem.
Horizontal scrollbar is not show when using "firefox" browser. (firefox version: 54.0.1)
I guess that "<div class='scrollbar-vista scroll-content'>" div's "max-height" value is wrong.
Other browsers are show well.
Hi. I am developing about web component. I have a multi-browsing problem.
Horizontal scrollbar is not show when using "firefox" browser. (firefox version: 54.0.1)
I guess that "<div class='scrollbar-vista scroll-content'>" div's "max-height" value is wrong.
Other browsers are show well.
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: 17px; top:50px; background-color:yellow; overflow:hidden; position:absolute;">
<div class="scrollbar-vista">
<div style="width: 500px; height: 0px;background-color:red;">
<div style="width:100000px; height:1px; background-color:red;position:absolute;"></div>
</div>
</div>
</div>
</body>
</html>
The text was updated successfully, but these errors were encountered: