Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title> Zoom deaktivieren </title> <meta meta name="viewport" content="width=device-width, user-scalable=no" /> <style> body { width:500px; border: 3px solid #4a91d8; } h1{ color: #4a91d8; text-align:center; text-shadow: 1px 3px 2px #000; } p { font-size:18px; padding:5px 0; margin:10px; width:220px; height:320px; border:2px solid #4a91d8; } div::after { content: ""; clear: both; display: table; } p:first-child{ float:left; } p:last-child{ float:right; } </style> </head> <body> <h1> Lorem Ipsum </h1> <div class="clearfix"> <p> Lorem Ipsum ist ein Blindtext der Druck- und Satzindustrie. Lorem Ipsum ist der Standard-Dummy-Text der Branche seit den 1500er Jahren, als ein unbekannter Drucker ein Setzschiff vom Typ nahm und es zu einem Musterbuch verarbeitete. </p> <p> Lorem Ipsum ist ein Blindtext der Druck- und Satzindustrie. Lorem Ipsum ist der Standard-Dummy-Text der Branche seit den 1500er Jahren, als ein unbekannter Drucker ein Setzschiff vom Typ nahm und es zu einem Musterbuch verarbeitete. </p> </div> </body> </html>