在容器div中,我需要将两个子div放置在相同的高度。第一个div(Total elements)应该锚定在最靠近页面左侧的位置,第二个div(The button)应该锚定在最靠近页面右侧的位置。
<div class="p-grid p-dir-col">
<div class="p-col">
<div class="p-grid p-justify-between">
Test
</div>
</div>
</div>
**<div class="container">**
<div *ngIf="searchLaunched" class="left-div" style="padding: 0.5em; font-size: 1.25em;">
{{ totalElements }} élément<span *ngIf="totalElements > 1">s</span> trouvé<span *ngIf="totalElements > 1">s</span>
</div>
<div *ngIf="canCreate" class="p-grid p-justify-end p-nogutter btn-table-crud-top" style="margin-top: 0.5em;">
<p-button (click)="addUser()" label="Créer utilisateur" title="{{ tooltips.creer }}"></p-button>
</div>
</div>
</div>
</div>
<p-table>
Test
</p-table>
1条答案
按热度按时间scyqe7ek1#
将Flexbox与
justify-content: space-between
配合使用