Material Toolbar - Right Align Username

From Logic Wiki
Revision as of 13:00, 11 January 2018 by AliIybar (Talk | contribs) (Created page with "Category:Angular Category:Material <pre> .fill-space { // This fills the remaining space, by using flexbox. // Every toolbar row uses a flexbox row layout. flex...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


.fill-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="fill-space"></span>

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