Toggle navigation
☰
HTML
CSS
Scripting
Database
<!DOCTYPE html> <html> <head> <style> .simple-border { border: 2px solid #333; padding: 15px; margin-bottom: 20px; } .dashed-border { border: 3px dashed crimson; padding: 15px; margin-bottom: 20px; } .mixed-border { border-top: 5px solid blue; border-bottom: 5px double green; padding: 15px; } </style> </head> <body> <div class="simple-border">This div has a simple solid border.</div> <div class="dashed-border">This div has a dashed crimson border.</div> <div class="mixed-border">This div has different border styles on the top and bottom.</div> </body> </html>