这是我的代码
<iron-image style="width:500px; height:400px; background-color: lightgray;"
sizing="cover" preload fade src="images/1.jpg"></iron-image>
<iron-image style="width:500px; height:400px; background-color: lightgray;"
sizing="cover" preload fade src="images/2.jpg"></iron-image>
这是代码的输出,我试图将其放在中心位置:
答案 0 :(得分:0)
使用iron-flex-layout
<custom-style>
<style is="custom-style">
.flex-center-justified {
@apply --layout-horizontal;
@apply --layout-center-justified;
}
</style>
</custom-style>
<div class="container flex-center-justified">
<iron-image style="width:500px; height:400px; background-color: lightgray;"
sizing="cover" preload fade src="images/1.jpg"></iron-image>
<iron-image style="width:500px; height:400px; background-color: lightgray;"
sizing="cover" preload fade src="images/2.jpg"></iron-image>
</div>