ShapeYourPath
(current)
Run Code
Live Code Editor- Remove Horizontal Scrollbar
Source Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Remove Horizontal Scrollbar</title> <style type="text/css"> div.example1 { max-width: 500px; margin: auto; border: 3px solid #73ad21; } </style> </head> <body> <h1>Remove Horizontal Scrollbar</h1> <div class="example1">This div element has width: 500px;</div> <p><strong>Tip:</strong> Drag the browser window to smaller than 500px side, You can not see any horizontal scrollbar</p> </body> </html>
Output :
Running