I need to wrap my text in a div
. But if I use flex-wrap
, it doesn't wrap the text and div's width becomes larger. I just want to make the wrapped text to be at the center.
.flex-container {
width: 150px;
height: 150px;
display: flex;
justify-content: center;
align-items: center;
background-color: red;
}
<div class="flex-container">
<span>longlonglonglonglonglonglong</span>
</div>