• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

No <hr> tags in Bootstrap 3?

Community Expert ,
May 03, 2015 May 03, 2015

Copy link to clipboard

Copied

I've got a site with a high number of horizontal rules that won't display in Bootstrap.

What's up with that?  I can overcome it with some inline styles but I'm not too thrilled with that approach.

Has anybody else come across this?

Nancy O.

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Views

36.6K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 03, 2015 May 03, 2015

UPDATE:

Bootstrap's default color for <hr> tags is not exactly an all purpose one. #eee is almost invisible on white BG. And the framework CSS fails to include a background-color for the browsers that require it. At least I couldn't find one.

Adding this to my custom.css made the <hr> tag appear as expected.

Works in Chrome, Firefox, Opera and IE.

hr {

    height: 2px;

    background-color:#555;

    margin-top: 20px;

    margin-bottom: 20px;

    width: 75%;

}

Nancy O.

Votes

Translate

Translate
Community Expert ,
May 03, 2015 May 03, 2015

Copy link to clipboard

Copied

LATEST

UPDATE:

Bootstrap's default color for <hr> tags is not exactly an all purpose one. #eee is almost invisible on white BG. And the framework CSS fails to include a background-color for the browsers that require it. At least I couldn't find one.

Adding this to my custom.css made the <hr> tag appear as expected.

Works in Chrome, Firefox, Opera and IE.

hr {

    height: 2px;

    background-color:#555;

    margin-top: 20px;

    margin-bottom: 20px;

    width: 75%;

}

Nancy O.

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines