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