我完全不知道如何将 flex css 应用于 amp-list。我希望所有子项目在水平方向上均匀分布,项目之间有空格。
当我删除 float:left; 从子项中,我得到的只是一列,而不是行。
似乎 flex 不适用于孩子。
是否有可能做到这一点?如果可以的话,我很想得到帮助。
CSS:
.container-flex {
display:flex;
flex-flow:row wrap;
justify-content: space-around;
display:-webkit-box;display:-ms-flexbox;display:flex;
ms-flex-wrap:wrap;flex-wrap:wrap;
-webkit-box-pack:justify;-ms-flex-pack:justify;
justify-content:space-between
}
.item-flex {
float:left;
min-width:200px;
min-height:350px;
flex-basis:auto;
flex-grow:1
}
.mb2 { margin-bottom:2rem;}
.mx-auto{ margin-left:auto;margin-right:auto;}
放大器列表:
<amp-list class="container-flex" [src]="json.src" src="json.src" height="2500" width="auto" layout="fixed-height">
<template type="amp-mustache">
<div class="item-flex left mb2 mx-auto">
...content...
</div>
</template>
</amp-list>