HTML CSS examples for CSS Property:border-bottom
Create thick Border on left and bottom
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> div{<!--from www.java 2 s.c o m--> width: 400px; height: 200px; background: red; border-left: 10px solid purple; border-bottom: 10px solid #c20c08; } </style> </head> <body> <div></div> <div></div> <div></div> </body> </html>