css设置文字上下居中,一行文字居中,两行或多行文字同样居中。

 

css设置文字上下居中,一行文字居中,两行或多行文字同样居中。_第1张图片

HTML:

 
居中文字
CSS: .book-detail-store-item { width: 50px; height:50px; line-height: 25px; font-size: 12px; } /*flex垂直居中对齐*/ .align-center-vertical{ display: flex; align-items: center; justify-content: space-around; flex-direction: column; }

 

你可能感兴趣的:(css设置文字上下居中,一行文字居中,两行或多行文字同样居中。)