justify-content: center;
是用于 flex container 上的属性,用于水平居中 flex items,即将 flex items 沿着 flex container 的主轴居中对齐。
text-align: center;
是用于 block-level 元素上的属性,用于水平居中元素内的文本内容,即将文本内容沿着元素的水平中心线居中对齐。
——
简单来说,都是让元素里的元素/文本居中对齐。一个是作用在flex容器上(display:flex),一个是作用在block上。 拿例子试一下就可以了:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="test">
test
</div>
</body>
</html>
<style>
.test{
width: 100px;
height: 100px;
background-color: red;
display: flex;
justify-content: center;
text-align: center;
}
</style>