gpt4 book ai didi

css - Mat-Toolbar 对齐元素(左、中、右)

转载 作者:行者123 更新时间:2023-12-03 19:42:54 24 4
gpt4 key购买 nike

我开发了一个工具栏,但我无法在同一行、左、中和右对齐元素。

有谁知道我如何对齐这些元素?

我注意到名称为 Align left 的元素向左对齐,align center 与 center 对齐,align right 向右对齐。

谢谢

Demo

代码

  <mat-sidenav-content fxFlexFill>  
<mat-toolbar color="primary">
<mat-toolbar-row>
<button mat-icon-button (click)="sidenav.toggle()" fxShow="true" fxHide.gt-sm>
<mat-icon>menu</mat-icon>
</button>

<div fxShow="true" fxHide.lt-md>
<a href="#" mat-button>Align left</a>
<a href="#" mat-button>Align left</a>
<a href="#" mat-button>Align center</a>
<a href="#" mat-button>Align center</a>
<a href="#" mat-button>Align right</a>
<a href="#" mat-button>Align right</a>
</div>
</mat-toolbar-row>
</mat-toolbar>

最佳答案

你在寻找这样的东西吗?

<div fxShow="true" fxHide.lt-md fxFlex fxLayout>
<!-- The following menu items will be hidden on both SM and XS screen sizes -->
<div fxFlex>
<a href="#" mat-button>Align left</a>
<a href="#" mat-button>Align left</a>
</div>
<div fxFlex fxLayoutAlign="center center">
<a href="#" mat-button>Align center</a>
<a href="#" mat-button>Align center</a>
</div>
<div fxFlex fxLayoutAlign="flex-end center">
<a href="#" mat-button>Align right</a>
<a href="#" mat-button>Align right</a>
</div>
</div>

关于css - Mat-Toolbar 对齐元素(左、中、右),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60455129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com