Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> div { max-width: 250px; background-color: #8ebf42; } p { max-width: 20em; background-color: #ccc; color: #fff; } </style> </head> <body> <h2>Beispiel für die Eigenschaft max-width</h2> <div>Max-width dieses div-Elements ist auf 250px eingestellt.</div> <p>Max-width dieses Absatzes ist auf 20em eingestellt.</p> </body> </html>