Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-scrollbars/scrollbar-color-012.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html>
<title>scrollbar-color with transparent colors works</title>
<link rel="author" title="Luke Warlow" href="mailto:luke@warlow.dev" />
<link rel="match" href="scrollbar-color-012-ref.html" />
<style>
html {scrollbar-color: transparent transparent;}
body {height: 200vh}
.container {
overflow: auto;
height: 200px;
width: 200px;
background-color: red;
}
.content {
height: 300px;
width: 300px;
}
</style>
<div class="container">
<div class="content"></div>
</div>