Align the two <p> element in the same line

Vigor

This is the Demo.

I want to align the two <p> element in the same line, but you can see the second one moves down a little bit. Anybody knows the reason?

HTML

<div class="logo">
    <p>Hello world</p>
    <p class="web_address">Hello all</p>
</div>

CSS

.logo p {
    margin:0;
    padding:0;
    border: solid 1px black;
    margin-left: 20px;
    font-size: 36px;
    display: inline-block;
    line-height: 80px;
}
Hashem Qolami

Inline(-block) elements (the paragraphs in this case) are aligned vertically in their baseline by default. You could add vertical-align: top; to fix the alignment issue.

Updated Demo.

.logo p {
    /* other styles goes here... */
    display: inline-block;
    vertical-align: top;
}

For further details you can refer this answer.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Align the two <p> element in the same line

From Dev

Align two divs in one line but they are not in a same element?

From Dev

CSS: align two element, to the left and right in the same line WHITHOUT floats

From Dev

Align two li in same line

From Dev

Two p tag in same line

From Dev

Align two elements on the same line in the same <td> tag

From Dev

How to align two input boxes on same line but either ends

From Dev

HTML, align two elements on both sides of the same line

From Dev

How to align two paragraphs to the left and right on the same line?

From Dev

How to align two text boxes on same line with CSS

From Dev

How to align two elements in the same line,without overlap

From Dev

How to align two svg masked images on the same line

From Dev

How to align two elements and keep them on the same line

From Dev

How to align two input boxes on same line but either ends

From Dev

How to align two span elements separately but in same line

From Dev

making two share plugin (facebook and twitter) align on the same line (align vertically)

From Dev

Left and right align on same line

From Dev

Align <td> and <div> on same line

From Dev

align image and text in same line

From Dev

How to force two element alignment in the same line bootstrap model

From Dev

put two html element in same line with custom css

From Dev

How to align two <div> tags horizontally in the same line inside a main <div> tag?

From Dev

Align two element rows by second element

From Dev

Two divs in the same line

From Dev

Two paragraphs in the same line

From Dev

Center align a p element within a div or td

From Dev

Android align checkboxes on same vertical line

From Dev

CSS div align horizontal in same line

From Dev

align input and select in same line (bootstrap mobile)

Related Related

  1. 1

    Align the two <p> element in the same line

  2. 2

    Align two divs in one line but they are not in a same element?

  3. 3

    CSS: align two element, to the left and right in the same line WHITHOUT floats

  4. 4

    Align two li in same line

  5. 5

    Two p tag in same line

  6. 6

    Align two elements on the same line in the same <td> tag

  7. 7

    How to align two input boxes on same line but either ends

  8. 8

    HTML, align two elements on both sides of the same line

  9. 9

    How to align two paragraphs to the left and right on the same line?

  10. 10

    How to align two text boxes on same line with CSS

  11. 11

    How to align two elements in the same line,without overlap

  12. 12

    How to align two svg masked images on the same line

  13. 13

    How to align two elements and keep them on the same line

  14. 14

    How to align two input boxes on same line but either ends

  15. 15

    How to align two span elements separately but in same line

  16. 16

    making two share plugin (facebook and twitter) align on the same line (align vertically)

  17. 17

    Left and right align on same line

  18. 18

    Align <td> and <div> on same line

  19. 19

    align image and text in same line

  20. 20

    How to force two element alignment in the same line bootstrap model

  21. 21

    put two html element in same line with custom css

  22. 22

    How to align two <div> tags horizontally in the same line inside a main <div> tag?

  23. 23

    Align two element rows by second element

  24. 24

    Two divs in the same line

  25. 25

    Two paragraphs in the same line

  26. 26

    Center align a p element within a div or td

  27. 27

    Android align checkboxes on same vertical line

  28. 28

    CSS div align horizontal in same line

  29. 29

    align input and select in same line (bootstrap mobile)

HotTag

Archive