如何在Material Design

时间:2017-03-28 10:14:37

标签: angular material-design

我正试图让一个按钮移动到容器的右侧,我使用了几种形式,但我无法得到它,不知怎的style="float: right;"

也许这不是一件事,材料设计,我没有前端开发的经验。

enter image description here

 <md-toolbar color="primary">
    <span><md-icon>mood</md-icon></span>

    <span>Material in Angular 2!</span>

    <button md-icon-button style="float: left;" [md-menu-trigger-for]="menu">
      <md-icon style="float: left;">more_vert</md-icon>
    </button>
  </md-toolbar>

enter image description here

<button md-icon-button style="float: right;" [md-menu-trigger-for]="menu">
      <md-icon style="float: right;">more_vert</md-icon>

我想把它移到这里。我很抱歉我的英语不好。我希望你能理解我。

enter image description here

1 个答案:

答案 0 :(得分:8)

你错过了<span>文本上允许它填充空格的课程:

See full example here.

.example-fill-remaining-space {
  // This fills the remaining space, by using flexbox. 
  // Every toolbar row uses a flexbox row layout.
  flex: 1 1 auto;
}
<md-toolbar color="primary">
  <span>Application Title</span>

  <!-- This fills the remaining space of the current row -->
  <span class="example-fill-remaining-space"></span>

  <span>Right Aligned Text</span>
</md-toolbar>