【发布时间】:2021-02-08 16:21:42
【问题描述】:
例如,css align-content 属性不适用于块容器
<html>
<body>
<div class="container">
<div class="item">this is item</div>
</div>
</body>
</html>
css代码
.container{
background-color:yellow;
width:350px;
height:200px;
align-content:center;
}
.item{
width:100px;
background-color:gray;
}
css框对齐模块说明截图
【问题讨论】: