Search code examples
csssections

CSS sections line divide


I would like to be able to separate my website into sections with a line. An example at what I am looking to create is on this website right under the pic of Napoleon http://www.napoleon-bonaparte-brownsville.com/ Napoleon Napoleon website


Solution

  • In html, you can add a horizontal line with the <hr> tag. In css, you could create a line with the border of elements (ex. .borderLeft { border-left: thick double #ff0000;} creates a double red line on the left of borderLeft class elements)