Add Border to hr - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Border

Description

Add Border to hr

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">
hr {<!--from  ww w.  ja  va2  s.  c om-->
   border:0;
   border-top:2px solid Chartreuse;
   opacity:.2;
}
</style> 
 </head> 
 <body> 
  <hr>  
 </body>
</html>

Related Tutorials