我想将标题和导航链接置于纸张工具栏中。我正在使用属性“ justify”和“ bottomJustify”来完成此操作,但是内容保留在左侧。

<paper-toolbar class="medium-tall" justify="center" bottomJustify="center">
    <div class="title">Titel</div>
    <div class="bottom">
       <a data-route="contact" href="contact">
          <span>Contact</span>
       </a>
   </div>
</paper-toolbar>


我选择哪个“高大”都没关系。它永远都行不通。有谁知道如何解决这个问题?



更新:

此代码有效:

   <paper-toolbar class="medium-tall" justify="center" bottom-justify="center">
        <div class="top">
            Title
        </div>
        <div class="bottom">
            <a data-route="contact" href="contact">
                <span>Contact</span>
            </a>
        </div>
    </paper-toolbar>


我不得不:


将bottomJustify更改为bottom-justify
删除“ title”类,而是使用“ top”类

最佳答案

在您的代码中,应使用bottom-justify而不是bottomJustify来设置属性!

关于css - 纸张工具栏不使内容居中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33959905/

10-10 05:10