Input
Output
<!DOCTYPE html> <html lang="en"> <head> <style> div { width: 200px; height: 100px; overflow: hidden; background-color: lightblue; } p { width: 300px; height: 150px; background-color: lightcoral; } </style> </head> <body> <div> <p>This content is too large for the box and will be hidden.</p> </div> </body> </html>