flex布局文本居中,文本溢出自动换行的方法

关键代码

flex:1;
overflow:hidden;
word-wrap:break-word;
word-break:break-all;
border-right:1px solid #323232;
font-size:12px;
display:flex;
align-items: center;
justify-content: center;

 

你可能感兴趣的:(flex布局文本居中,文本溢出自动换行的方法)