Bootstrap 3: text on the left and right in the page header

Master_T

I'm trying to make a simple page header with bootstrap 3. Here's the code:

<div class="page-header">
    <h1>Text on the left</h1>
    <h3 class="text-right">This to the right but on the same line</h3>
</div>

Here's a jsfiddle to try: http://jsfiddle.net/DTcHh/2450/

Basically I just want to have text on the left and right inside the page-header, but on the same line.

The usual tricks of using float:left and float:right as with normal html "break" the page-header, meaning the text is properly aligned but is displayed outside (under) the page-header, which remains empty.

Any clues?

Darko

you can use "pull-right" and "pull-left" classes, with "clearfix" class after.

(Bootstrap 3)

<div class="page-header">
  <div class="pull-left">
  <h1>Text on the left</h1>
  </div>
  <div class="pull-right">
  <h3 class="text-right">This to the right but on the same line</h3>
  </div>
  <div class="clearfix"></div>
</div>

also you can adjust line height on the h3 tag in the right, if you want to match with h1

Fiddle for Bootstrap 3: https://jsfiddle.net/darkosss/dy9wjk2q/

(as of Bootstrap 4.1)

use float-left and float-right instead. You still need the clearfix.

<div class="page-header">
  <div class="float-left">
  <h1>Text on the left</h1>
  </div>
  <div class="float-right">
  <h3 class="text-right">This to the right but on the same line</h3>
  </div>
  <div class="clearfix"></div>
</div>

Fiddle for Bootstrap 4: https://jsfiddle.net/darkosss/eozs65qb/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Bootstrap 3: Utilizing the left and right column spaces outside page-header

From Java

Bootstrap 3 offset on right not left

From Dev

Bootstrap affix in both left and right side of the page

From Dev

Bootstrap 3 Text on the right of thumbnails

From Java

Right to Left support for Twitter Bootstrap 3

From Dev

Bootstrap 3 carousel, extra space in the left and right

From Dev

Bootstrap JS 3 carousel rotate Left To Right

From Dev

Float right-to-left in bootstrap 3?

From Dev

Bootstrap 3 Navbar Collapse menu at Left for left and right navbar items

From Dev

How to truncate text from left instead of right in header title ?

From Dev

Bootstrap nav submenu float left or right according to page limits

From Dev

Bootstrap 3 - Footer sitting to the right of the page

From Dev

Text header block floating right in div in 3 column layout header

From Dev

Left- and right-aligned text on the same line in a Bootstrap dropdown

From Dev

text direction right to left (rtl) inside popover bootstrap

From Dev

How to make right/left icons/text lists in Bootstrap?

From Dev

Bootstrap navbar left to right

From Dev

Bootstrap search box and button aligned to right of header text (not in nav bar)

From Dev

How to set 3 images on bootstrap left, center and right

From Dev

bootstrap 3 right element on top of left element in smaller screens

From Dev

Bootstrap 3 Make navigational arrows on left and right of screen

From Dev

Bootstrap 3 Bleed left and right background images to edge of browser

From Dev

Bootstrap 3 - How can I put the left and right borders of the image?

From Dev

Best Practice -- Create Bootstrap template with 3 columns -- Left & Right Sidebars

From Dev

Responsive Images to the right and left of the Youtube (Iframe) in Bootstrap 3

From Dev

Bootstrap 3 making right column shift underneath left column

From Dev

Text left and image right

From Dev

CSS3 - animate text align left/center/right

From Dev

Text-align text on the left to the right and text on the right to the left

Related Related

  1. 1

    Bootstrap 3: Utilizing the left and right column spaces outside page-header

  2. 2

    Bootstrap 3 offset on right not left

  3. 3

    Bootstrap affix in both left and right side of the page

  4. 4

    Bootstrap 3 Text on the right of thumbnails

  5. 5

    Right to Left support for Twitter Bootstrap 3

  6. 6

    Bootstrap 3 carousel, extra space in the left and right

  7. 7

    Bootstrap JS 3 carousel rotate Left To Right

  8. 8

    Float right-to-left in bootstrap 3?

  9. 9

    Bootstrap 3 Navbar Collapse menu at Left for left and right navbar items

  10. 10

    How to truncate text from left instead of right in header title ?

  11. 11

    Bootstrap nav submenu float left or right according to page limits

  12. 12

    Bootstrap 3 - Footer sitting to the right of the page

  13. 13

    Text header block floating right in div in 3 column layout header

  14. 14

    Left- and right-aligned text on the same line in a Bootstrap dropdown

  15. 15

    text direction right to left (rtl) inside popover bootstrap

  16. 16

    How to make right/left icons/text lists in Bootstrap?

  17. 17

    Bootstrap navbar left to right

  18. 18

    Bootstrap search box and button aligned to right of header text (not in nav bar)

  19. 19

    How to set 3 images on bootstrap left, center and right

  20. 20

    bootstrap 3 right element on top of left element in smaller screens

  21. 21

    Bootstrap 3 Make navigational arrows on left and right of screen

  22. 22

    Bootstrap 3 Bleed left and right background images to edge of browser

  23. 23

    Bootstrap 3 - How can I put the left and right borders of the image?

  24. 24

    Best Practice -- Create Bootstrap template with 3 columns -- Left & Right Sidebars

  25. 25

    Responsive Images to the right and left of the Youtube (Iframe) in Bootstrap 3

  26. 26

    Bootstrap 3 making right column shift underneath left column

  27. 27

    Text left and image right

  28. 28

    CSS3 - animate text align left/center/right

  29. 29

    Text-align text on the left to the right and text on the right to the left

HotTag

Archive