我对如何将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:
<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>
答案 0 :(得分:0)
尝试更改您的json。 将您的弹性商品数据收集到json资源中的一组中。示例:
IGetSpecialtyQuestionsParam
然后在您的html上应用此:
{
"items":[
{
"flex-item-group":[
{ "your-data": "value" },
{ "your-data-2" : "value 2" }
]
}
]
}
答案 1 :(得分:0)
.container-flex > div
它应用于内部