我试图将一些内容放在paper-item
内,更准确地说,我试图将内容横向居中并垂直居中,但它不会起作用。我可能做了一件非常简单的错事。
以下是代码:
<paper-item style="background: blue; height: 200px;">
<div horizontal layout center style="background: green;" flex>
<div style="background: red; text-align: center;" flex>
Lägg till
</div>
</div>
</paper-item>
结果: 预期结果:
答案 0 :(得分:0)
为您的模板添加样式
<style>
paper-item::shadow .button-content {
padding: 0;
height: 100%;
}
</style>
答案 1 :(得分:0)
您可以尝试self-center
属性,但在这种情况下它的父元素div
必须明确设置它的高度。
示例:
<paper-item style="background: blue; height: 200px;">
<div horizontal layout center style="background: green;" flex>
<div style="background: red" center-center self-center flex>
Lägg till
</div>
</div>
</paper-item>
有关布局属性的更多信息,请访问:https://www.polymer-project.org/docs/polymer/layout-attrs.html