0
以下のスキームで説明されている動作を作成します。オーバーフローが発生した場合、どのように「右」に要素を送信しますか?
要素が画面外にあるたびに、右側の新しい列に配置します。モーメントについて
、全ての要素が同じ列にあります。
<style is="custom-style" include="iron-flex">
.flex-wrap {
@apply(--layout-wrap);
@apply(--layout-vertical);
}
</style>
<template>
<div class="container flex-wrap" >
<template is="dom-repeat" items="{{employeesArray}}">
<employee-element name="{{item.title}}"
preview="{{item.preview}}"
width={{item.width}} height={{item.height}}>
</employee-element>
</template>
</div>
</template>
は、どのように私は私が描いた場所で開催する要素を強制することができます:ここで
は私の要素が現在表示されている方法ですか?
あなたはそのためにjavascriptが必要です。 –
真実ではない、CSSで行うことができます、すぐに回答を投稿する – Laurens