【发布时间】:2018-01-17 08:06:58
【问题描述】:
我需要将我的文本包装在 div 中。但是如果我使用flex-wrap,它不会换行并且div的宽度会变大。我只是想让包裹的文本居中。
.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>
【问题讨论】: