Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <html> <head> <title>My Example</title> <!-- CSS --> <style> /* Box styles */ .myBox { border: none; padding: 5px; font: 24px/36px sans-serif; width: 200px; height: 150px; overflow: scroll; } /* Scrollbar styles */ ::-webkit-scrollbar { width: 12px; height: 12px; } ::-webkit-scrollbar-track { box-shadow: inset 0 0 10px olivedrab; border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; background: yellowgreen; box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } </style> </head> <body> <!-- HTML --> <div class="myBox"> Efficient honorificabilitudinitatibus cross-media information without floccinaucinihilipilification cross-media value. Quickly maximize timely deliverables for real-time schemas plenipotentiary. </div> </body> </html>
Preview