我正在构建一个聚合物应用程序来显示学生的详细信息。我想用每个学生的名字和图像动态地制作纸卡。现在我通过复制同一张卡片制作了5张卡片。但是每张纸卡都显示在同一行。我希望每行显示 4 张纸卡。
<dom-module id="card-view">
<template>
<style>
/* local styles go here */
:host {
display: inline-block;
}
.card {
margin-left: 5px;
margin-right: 5px;
}
</style>
<style is="custom-style">
.flex {
@apply(--layout-horizontal);
text-align: justify;
-ms-text-justify: distribute-all-lines;
text-justify: distribute-all-lines;
width:100%;
}
</style>
<!-- local DOM goes here -->
<div class="container flex">
<div class="card">
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000">
<div class="card-content">
Emmentaler or Emmental is a yellow, medium-hard cheese that originated in the area around Emmental, Switzerland. It is one of the cheeses of Switzerland, and is sometimes known as Swiss cheese.
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
<div class="card">
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000">
<div class="card-content">
Emmentaler or Emmental is a yellow, medium-hard cheese that originated in the area around Emmental, Switzerland. It is one of the cheeses of Switzerland, and is sometimes known as Swiss cheese.
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
<div class="card">
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000">
<div class="card-content">
Emmentaler or Emmental is a yellow, medium-hard cheese that originated in the area around Emmental, Switzerland. It is one of the cheeses of Switzerland, and is sometimes known as Swiss cheese.
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
<div class="card">
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000">
<div class="card-content">
Emmentaler or Emmental is a yellow, medium-hard cheese that originated in the area around Emmental, Switzerland. It is one of the cheeses of Switzerland, and is sometimes known as Swiss cheese.
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
<div class="card">
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000">
<div class="card-content">
Emmentaler or Emmental is a yellow, medium-hard cheese that originated in the area around Emmental, Switzerland. It is one of the cheeses of Switzerland, and is sometimes known as Swiss cheese.
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
<div class="card">
<paper-card heading="Emmental" image="http://placehold.it/350x150/FFC107/000000">
<div class="card-content">
Emmentaler or Emmental is a yellow, medium-hard cheese that originated in the area around Emmental, Switzerland. It is one of the cheeses of Switzerland, and is sometimes known as Swiss cheese.
</div>
<div class="card-actions">
<paper-button>Share</paper-button>
<paper-button>Explore!</paper-button>
</div>
</paper-card>
</div>
</div>
</template>
<script>
Polymer({
is: 'card-view',
});
</script>
</dom-module>