2

我完全不知道如何将 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>
4

2 回答 2

0

尝试更改您的json。在您的 json 资源中的一组中收集您的弹性项目数据。例子:

{
  "items":[
      {
         "flex-item-group":[
             { "your-data": "value" },
             { "your-data-2" : "value 2" }
          ]
      }
  ]
}

然后在你的html上,应用这个:

<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">
   {{#flex-item-group}}
    ...content...
   {{/flex-item-group}}
</div>
</template>

于 2018-10-17T16:04:14.487 回答
0
.container-flex > div

它申请内部 <div role="list" 作为 item-flex 的父级

于 2021-07-03T03:32:48.430 回答