如何在聚合物 app-header 中将两个 div 一个放在另一个下面

How to place two div's one below the other in polymer app-header

如何在 <div main-title>My App</div> 下方放置另一个 div,以便第二个 div 中的内容应低于第一个 div 中的内容。

<app-header condenses reveals effects="waterfall">
  <app-toolbar>
    <paper-icon-button icon="menu" drawer-toggle></paper-icon-button>
      <div main-title>My App</div>
  </app-toolbar>
</app-header>

尝试包装在另一个 div 有显示块的地方。

像这样:

<div style="display:block;">
    <div main-title>My App</div>
    <div other-div>Something</div>
</div>