5
我正在嘗試使輸入具有一定的寬度。我正在使用Angular Material 2,但由於某些原因,CSS中的樣式未應用於輸入標籤。 Here is a working plunker of my issue與受影響的代碼一起:使用角材料2輸入的自定義樣式
@Component({
selector: 'my-app',
template: `
<div>
<form>
<md-input [(ngModel)]="cycleTime" type="number" name="email">
<span md-prefix>Cycle Time:</span>
<span md-suffix> minutes</span>
</md-input>
</form>
</div>
`,
styles:[`
input {
width: 50px;
text-align: right;
}
`],
directives: [MdButton, MdInput]
})
export class AppComponent {
cycleTime = 1
constructor() {}
}
我如何風格,是由角材料2中創建的輸入?
該解決方案影響的所有輸入。有沒有辦法只做一個輸入或一組輸入? – Hayzum