如何使md-select 100%宽度?

时间:2017-08-03 13:10:34

标签: angular angular-material2

我使用最后版本的角度。这是材料设计代码:

<md-grid-tile>
 <md-select placeholder="Favorite food" [(ngModel)]="selectedValue" name="food">
 </md-select>
</md-grid-tile>

我尝试为{md-select设置width: 100%。但它不起作用。

1 个答案:

答案 0 :(得分:2)

这将解决您的问题。

<md-grid-tile>
    <md-select placeholder="Favorite food" 
               [(ngModel)]="selectedValue" 
               name="food"
               [style.width]="'100%'">
    </md-select>
</md-grid-tile>