Weblog

Eine CSS-Pfeilbox erstellen

29ster April 2026, Daniel Schildt

<!DOCTYPE html> <html lang=de> <head> <style> div { position: absolute; top: 200px; left: 360px; border-radius: 4px; padding: 32px; height: 20px; color: white; background-color: #3584e4; } div:before { position: absolute; top: 21px; left: -20px; border-top: 20px solid transparent; border-right: 20px solid #3584e4; border-bottom: 20px solid transparent; color: black; content: ""; } </style> </head> <body> <div> Dies ist ein Satz. </div> </body>

Dies ist ein Satz.