Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS border-bottom-style Property</title> <style> div { background: #eee; display: flex; height: 30px; margin-bottom: 10px; align-items: center; justify-content: center; border-width: 5px; border-color: pink; } .border-1 { border-bottom-style: solid; } .border-2 { border-bottom-style: none; } .border-3 { border-bottom-style: groove; } .border-4 { border-bottom-style: dashed; } .border-5 { border-bottom-style: double; } .border-6 { border-bottom-style: inset; } </style> </head> <body> <div class="border-1">solid</div> <div class="border-2">none</div> <div class="border-3">groove</div> <div class="border-4">dashed</div> <div class="border-5">double</div> <div class="border-6">inset</div> </body> </html>
  Preview Arrow