Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!doctype html> <title>Example</title> <style> .clipped { width: 150px; height: 110px; padding: 20px; background-color: gold; border: 5px solid orange; overflow-y: scroll; } </style> <div class="clipped"> <p>Change the value to see the difference between <code>visible</code>, <code>scroll</code>, <code>auto</code>, and <code>hidden</code>.</p> <p>This setting affects the y-axis (any scrollbars will allow you to scroll vertically).</p> </div>