如何调整输入长度

时间:2016-11-11 14:28:09

标签: css3 angular dart

我正在使用https://dart-lang.github.io/angular2_components_example/组件,并希望将输入框的长度调整为方框:

enter image description here

正如您在图片中看到的那样,输入框应该与上面的黑框一样长。我怎样才能在css中调整它?

1 个答案:

答案 0 :(得分:1)

<material-input floatingLabel style="width:250px">

<material-input class="foo" floatingLabel>

material-input.foo {
  width: 250px;
}