Create thick Border on left and bottom - HTML CSS CSS Property

HTML CSS examples for CSS Property:border-bottom

Description

Create thick Border on left and bottom

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials