.mySpace-appCard-content{ display: flex; flex-wrap: wrap; justify-content: space-between; }怎么设置行距
时间: 2024-05-01 14:19:46 浏览: 113
你可以通过在 `.mySpace-appCard-content` 类下添加 `line-height` 属性来设置行距,例如:
```
.mySpace-appCard-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
line-height: 1.5; /* 设置行距为1.5倍 */
}
```
你可以根据需要调整 `line-height` 的值来适应你的页面布局。
阅读全文