作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有未知数量的卡片,我想在它们上 ngfor 并在一行中显示每两张卡片
<mat-card class="example-card">
<mat-card-header>
<div mat-card-avatar class="example-header-image"></div>
<mat-card-title>{{user.firstName}}</mat-card-title>
<mat-card-subtitle>{{user.lastName}}</mat-card-subtitle>
</mat-card-header>
<mat-card-content>
<p>
The Shiba Inu is the smallest of the six original and distinct spitz breeds of dog from Japan.
A small, agile dog that copes very well with mountainous terrain, the Shiba Inu was originally
bred for hunting.
</p>
</mat-card-content>
<mat-card-actions>
</mat-card-actions>
</mat-card>
最佳答案
花了几个小时...结果证明是微不足道的:只需将 float:left 添加到您的类 CSS 中即可。就我而言,它看起来像这样:
.example-card {
max-width: 300px;
margin-bottom: 50px;
float: left;
}
关于angular5 - 如何在同一行显示两个垫卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50192948/
我是一名优秀的程序员,十分优秀!