| <!DOCTYPE html> | |
| <style> | |
| .container { | |
| width: 200px; | |
| height: 200px; | |
| direction: rtl; | |
| overflow: auto; | |
| scrollbar-gutter: stable; | |
| margin: 0; | |
| padding: 0; | |
| border: none; | |
| } | |
| </style> | |
| <p>The scrollbar gutter should be on the left side (RTL).</p> | |
| <div class="container"> | |
| <div style="height: 10px; background: green;"></div> | |
| </div> |