afizzyweb

Posts Tagged ‘hr tag

This is helpful incase you are using editor for content loading and need add a divider in between your content.  Directly giving border-bottom to the html element is one of the way. However incase using inline element and do not want to make it block, this <hr> tag will be useful.

Css properties

hr {

color:  transparent;

border: 0;

height: 0;

border-bottom: 1px solid red;

clear: both;

}


Categories