Can't vertical align multiple lines without huge line gaps

Freiermuth

I have a JS MixItUp, and I have it in text boxes, but I can't seem to get it to get multiple lines in a box, vertically aligned, and stay within the element.

To vertically align, I need to set the line-height and set vertical-align to middle.

I set the line-height to the size of the box (45px).

In this this CodePen, you can see the problem on the bottom boxes - the words go right out of the box.

.courses span {
    border: 1px solid white;
    color: black;
    display: grid;
    font-size: 11px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #505050;
    line-height: 45px;
    vertical-align: middle;
    margin: 4px 0;
    -webkit-transition: all .4s ease;
            transition: all .4s ease;
}

I also tried following a vertical alignment example CodePen, but the single line would be at the top of the box.

Bhuwan

Some changes in css code.

Try this updated codepen:- https://codepen.io/bhuwanb9/pen/zwMJWj

.courses li {
    text-align: center;
    font-size: 14px;
    width: 19%;
    margin: 0.5%;
    background: #ffffff;
    border: 2px solid #505050;
    position:relative;
    height: 65px;
    box-sizing:border-box;
 }

 .courses span {
    color: black;
    font-size: 11px;
    line-height: normal;
    position:absolute;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    transform: translateY(-50%);
    top:50%;
 }

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Vertical align multiple text lines

From Dev

vertical-align wrapper div won't work with multiple lines of text

From Dev

Can't vertical align caption on image

From Dev

I can't vertical align a logo on Wordpress

From Dev

Multiple lines in a box which have ellipsis and vertical-align middle

From Dev

Can't copy multiple lines into command-line python

From Dev

Can't copy multiple lines into command-line python

From Dev

Top vertical align in line-height (or vertical spacing without line-height)

From Dev

Top vertical align in line-height (or vertical spacing without line-height)

From Dev

Can't properly align my receipt lines

From Dev

Highcharts / Highstock step line without vertical "transition" lines?

From Dev

Vertical line align property in css

From Dev

Merge lines into a huge single line without "spaces" using sed in .txt file

From Java

How can std::vector access elements with huge gaps between them?

From Dev

display divs inline-block in 2 columns without vertical gaps

From Dev

How to copy multiple lines to clipboard without an added space to each line?

From Dev

sed command to rplace a line with multiple lines without changing the format of the file

From Dev

Android align checkboxes on same vertical line

From Dev

Line height or vertical align in flexbox child

From Dev

Different font vertical align in line on OS X

From Dev

Line height or vertical align in flexbox child

From Dev

Why I can't halve div with vertical line

From Dev

Why I can't halve div with vertical line

From Dev

How to align one line of text without adding extra space between lines?

From Dev

Multiple vertical lines with different colors on area chart, google charts. Issue line colors disappears on hovering on text

From Dev

5 divs in one row, can't align them in one line

From Dev

Align first line of multiple lines UILabel with UIImage using AutoLayout programmatically ( Objective-C )

From Dev

Vertical align multiple elements inside parent

From Dev

Vertical align text with multiple rows in a CSS circle

Related Related

  1. 1

    Vertical align multiple text lines

  2. 2

    vertical-align wrapper div won't work with multiple lines of text

  3. 3

    Can't vertical align caption on image

  4. 4

    I can't vertical align a logo on Wordpress

  5. 5

    Multiple lines in a box which have ellipsis and vertical-align middle

  6. 6

    Can't copy multiple lines into command-line python

  7. 7

    Can't copy multiple lines into command-line python

  8. 8

    Top vertical align in line-height (or vertical spacing without line-height)

  9. 9

    Top vertical align in line-height (or vertical spacing without line-height)

  10. 10

    Can't properly align my receipt lines

  11. 11

    Highcharts / Highstock step line without vertical "transition" lines?

  12. 12

    Vertical line align property in css

  13. 13

    Merge lines into a huge single line without "spaces" using sed in .txt file

  14. 14

    How can std::vector access elements with huge gaps between them?

  15. 15

    display divs inline-block in 2 columns without vertical gaps

  16. 16

    How to copy multiple lines to clipboard without an added space to each line?

  17. 17

    sed command to rplace a line with multiple lines without changing the format of the file

  18. 18

    Android align checkboxes on same vertical line

  19. 19

    Line height or vertical align in flexbox child

  20. 20

    Different font vertical align in line on OS X

  21. 21

    Line height or vertical align in flexbox child

  22. 22

    Why I can't halve div with vertical line

  23. 23

    Why I can't halve div with vertical line

  24. 24

    How to align one line of text without adding extra space between lines?

  25. 25

    Multiple vertical lines with different colors on area chart, google charts. Issue line colors disappears on hovering on text

  26. 26

    5 divs in one row, can't align them in one line

  27. 27

    Align first line of multiple lines UILabel with UIImage using AutoLayout programmatically ( Objective-C )

  28. 28

    Vertical align multiple elements inside parent

  29. 29

    Vertical align text with multiple rows in a CSS circle

HotTag

Archive