border-left
Syntax:

border-left: border-left-width | border-left-style | border-left-color


<style type="text/css">
.demo1 {
   border-left: 10px solid #FF0000;
   background: #00FF00;
   width: 200px;
   height: 50px;
}
</style>
<div class="demo1"></div>
<style type="text/css">
.demo2 {
   border-left: 10px dotted #0000FF;
   background: #00FF00;
   width: 200px;
   height: 50px;
}
</style>
<div class="demo2"></div>