3 回答
TA贡献1752条经验 获得超4个赞
使用padding
,您不需要更改height
输入的 。要更改占位符的颜色,请使用::placeholder
。增加font-size
也会增加输入的高度。
input {
padding: 8px;
font-size: 18px;
border: 1px solid #efefef;
border-radius: 3px;
}
input::placeholder {
color: lightgray;
}
<input placeholder="Example Input" />
TA贡献1828条经验 获得超3个赞
<mat-form-field>
<mat-label>Find {{ this['groupType'] }} by Name</mat-label>
<input type="text" matInput (keyup)="searchList($event.target.value)" style="padding: 3px 10px; font-size: 20px;"/>
</mat-form-field>
TA贡献1802条经验 获得超10个赞
只需删除 mat-label 并在 mat 输入中添加占位符属性即可。
<mat-form-field appearance="outline">
<input type="text" matInput (keyup)="searchList($event.target.value)" placeholder="Find {{ this['groupType'] }} by Name" />
</mat-form-field>
工作 stackblitz:https://stackblitz.com/edit/angular-fjhtdf
- 3 回答
- 0 关注
- 163 浏览
添加回答
举报