Search code examples
csstwitter-bootstrapfirefoxposition

Bootstrap hr position


I'm working on a site with bootstrap as a base. I want to have a hr to separate the footer but for some reason in firefox it jumps up to the middle right of the page. I don't have this issue in any other browser. link to test site ![screen shot of site in firefox.][2]


Solution

  • Simply give the element a clear

    .footer-hr{
        clear:both;
    }