Wrapping text in flex-item?

Could anyone help me wrap the text within the flex-item?

        <ul class="flex-container">
          <li class="flex-item">Lorem ipsum dolor sit amet</li>
          <li class="flex-item">Lorem ipsum</li>
          <li class="flex-item">Lorem ipsum</li>
          <li class="flex-item">Lorem ipsum</li>
          <li class="flex-item">Lorem ipsum</li>
        </ul>
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style: none;
}

.flex-item {
  background: grey;
  padding: 5px;
  width: 100px;
  height: 150px;
  margin-top: 10px;
  line-height: 150px;
  color: white;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
}

The text is wrapping but you just set the line-height to bigger than the box -size.

Remove this to see the text wrap.

/* line-height: 150px;*/

If you are trying to centre the text vertically then use flex centering.

.flex-item {
  background: grey;
  padding: 5px;
  width: 100px;
  min-height: 150px;
  /* line-height: 150px;*/
  color: white;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  display: flex;
  align-items: center;
}
4 Likes

@PaulOB wouldn’t line-height just cause the paragraphs to space out? Not seeing how it would prevent text from wrapping. Just wondering.

It doesn’t.:slight_smile:

As I said above the text is wrapping but you just can’t see it because it wraps out of the box and in white.

Here it is in red:

Screen Shot 2021-05-03 at 15.53.11

5 Likes

Ok cool. This one looks better :slight_smile:

Thanks a lot @PaulOB. I removed the line-height and added the lines you suggested to center the text vertically.

Here is the code I’m going with…

        <div class="flex-container">
          <div class="flex-item">Lorem ipsum dolor sit amet, consectetur adipiscing</div>
          <div class="flex-item">Lorem ipsum</div>
          <div class="flex-item">Lorem ipsum</div>
          <div class="flex-item">Lorem ipsum</div>
          <div class="flex-item">Lorem ipsum</div>
        </div>
.flex-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  /*list-style: none; -- removed this line*/
}

.flex-item {
  background: grey;
  padding: 5px;
  width: 100px;
  height: 150px;
  margin-top: 10px;
  /*line-height: 150px; -- removed this line*/
  color: white;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  display: flex; /* added this line*/
  align-items: center; /* added this line*/
}

2 Likes

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.