此问题在此处已有答案:
CSS: align two element, to the left and right in the same line WHITHOUT floats(3个答案)
昨天就关门了。
如何在同一行中对齐标题和按钮?按钮应该在页面的右侧,标题应该在页面的左侧。
Html:
<mat-card>
<h1>Simple card</h1>
<button mat-icon-button>
<mat-icon aria-label="Example icon-button with a heart icon">favorite</mat-icon>
</button>
<button mat-fab>Basic</button>
</mat-card>
字符串
Demo的
3条答案
按热度按时间c7rzv4ha1#
您可以通过添加以下HTML/CSS代码来使用position:absolute
超文本标记语言
字符串
CSS
型
0lvr5msh2#
使用flexbox也会将按钮和文本垂直居中对齐。
Guide for flexbox
超文本标记语言
字符串
CSS
型
Demo的
ygya80vv3#
您可以使用CSS Float属性
字符串