Div dashed border - HTML CSS CSS Property

HTML CSS examples for CSS Property:border-left-style

Description

Div dashed border

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

#presenter{<!--from  ww w.j  a  v  a  2  s .com-->
   position: fixed;
   width: 150px;
   height: 150px;
   border-style: dashed;
   border-color: red;
}


      </style> 
 </head> 
 <body> 
  <div id="presenter"> 
  </div>  
 </body>
</html>

Related Tutorials