Input
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Fixed Width Div Example</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; padding: 50px; } .box { width: 300px; /* Fixed width */ height: 200px; background-color: #4CAF50; color: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } </style> </head> <body> <div class="box"> <h2>Fixed Width Box</h2> <p>This box has a fixed width of 300 pixels regardless of the screen size.</p> </div> </body> </html>