Monday, 2 September 2013

Style hr tag in HTML

Simple to style your hr tag by using the below code



<html>
<head>
<style type="text/css">
        hr.hline_color
 {
              background:#D99;
              height:2px;
       }

</style>

<body><br/><br/>
<hr class="hline_color"/><br/><br/>
<hr class="hline_color"/>
</body>
</html>

No comments:

Post a Comment