7 lines
172 B
Plaintext
7 lines
172 B
Plaintext
.flex-center {
|
|
display: flex;
|
|
justify-content: center; /* 水平 */
|
|
align-items: center; /* 垂直 */
|
|
text-align: center; /* 多行时文字也居中 */
|
|
}
|