聚合物1.1卡和響應
之間的聚合物佈局 - 地方的空間,我有我想要一排只有2紙卡與他們之間的100px的空間自定義元素。當然,如果屏幕像手機一樣縮小,我想讓這些卡片堆疊起來。
我不知道如何放置紙卡之間的空間。如果我使用margin
或padding
,那麼當卡片堆疊在較小的屏幕上時,它們被推到一邊而不居中。
這是相當大的元素,所以我只是放置在主代碼:
<dom-module id="portfolio-page">
<style>
:host[show] {
@apply(--layout-horizontal);
@apply(--layout-center-justified);
height: 100%;
width: 100%;
background-color: var(--paper-grey-50);
}
#main {
width: 100%;
margin-top: 50px;
}
@media all and (min-width: 1200px) {
#main {
width: 90%;
}
paper-card {
max-width: 400px;
min-width: 250px;
}
</style>
<template>
<template is="dom-if" if="{{show}}">
<div id="main">
<div class="vertical layout">
<div class="horizontal justified layout">
<paper-card elevation="3" class="fancy"></paper-card>
<paper-card elevation="3" class="fancy"></paper-card>
</div>
</div>
</template>
</template>
</dom-module>
啊,'紙卡+紙卡'很聰明。謝謝你那個。 – Mike