我是角度flex布局的新手,并使用flex布局处理角度2应用程序。
我正在尝试构建一个简单的登录页面,如下所示。
<mat-toolbar color="primary" ><span class="span">SPACE STUDY</span></mat-toolbar>
<div class="card-container">
<mat-card class="card-content">
<form (ngSubmit)="onSubmit(user.username,user.password)" #myForm="ngForm" class="form-elements">
<br/>
<mat-icon style="-webkit-text-fill-color:#6A5ACD">account_circle</mat-icon><br/>
<p>LOGIN</p>
<mat-input-container class="form-row">
<span matTooltip="Username">
<input matInput placeholder=" " id="username" [(ngModel)]="user.username" name="username">
</span>
<span matPrefix><mat-icon style="color: black;"></mat-icon></span>
</mat-input-container>
<mat-input-container class="form-row">
<span matTooltip="Password">
<input matInput placeholder=" " id="password" [(ngModel)]="user.password" name="gpassword" [type]="hide ? 'password' : 'text'">
</span>
<span matPrefix><mat-icon style="color: black;"></mat-icon></span>
</mat-input-container>
<div class="checkbox">
<mat-checkbox>REMEMBER ME</mat-checkbox>
</div><br/>
<button mat-raised-button color="primary" type="submit" mat-raised-button style="border-radius:15px;max-height:6vh;">Login</button>
<mat-progress-bar mode="indeterminate" *ngIf="showprogressbar"></mat-progress-bar>
</form>
</mat-card>
</div>
.mat-toolbar{
display: flex;
align-items: center;
justify-content: center;
height: 35vh;
}
.span{
font-family: Verdana, sans-serif;
font-weight:bold;
font-size:16px;
}
.card-container {
background-color: white;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card-content {
background-color: white;
display: flex;
min-width:70vh;
align-content: stretch;
align-items: center;
justify-content: center;
border-radius: 2px;
}
.form-elements{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.mat-icon {
transform: scale(4);
}
.form-row{
align-content: stretch;
}
.checkbox{
display: flex;
flex-direction: column;
font-family: Verdana, sans-serif;
font-weight:bold;
font-size:12px;
}
如上所示,我想将一半的表格卡放在mat-toolbar组件上。
我尝试使用填充和边距,但它没有给我正确的对齐。任何人都可以帮我在第一张图片中将我的表单卡对齐。
此外,我尝试将stretch属性应用于mat-input-container以拉伸表单输入行,但它不起作用..
请帮助我如何应用flex CSS来实现我的要求..
答案 0 :(得分:1)
也许你不知道,但Angular已经有了一个flex布局系统。
它被称为 Flex布局,以及 you can find it here 。它允许你摆脱那些重复的CSS代码来改变你的观点。
项目中的基本用法:
<mat-card class="card-content" fxLayout="row" fxLayoutAlign="center center">
<form ... fxLayout="column" fxLayoutAlign="center stretch">
...
</form>
</mat-card>
关于您的问题,我认为stretch
值可以应用于align-items
,而不是align-content
属性。