Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS maximum width and height</title> <style> div { float: left; max-width: 400px; max-height: 50px; background: #b9d48d; } </style> </head> <body> <div>Enter some text to see how it works!</div> </body> </html>