使用 flex 布局使文本框获得全宽 angular

make textbox axquire fullwidth using flexlayout angular

enter code hereenter image description here我是使用 angularflex 进行新设计的,我想使用 flexdesigning 而非标准 css 宽度 属性 使弹出窗口中的第三个字段获取最大宽度,谁能帮帮我

enter image description here

弹出窗口有效!

{{validationErrors.getError(form.controls['Description'])}} {{validationErrors.getError(form.controls['Description'])}} {{validationErrors.getError(form.controls['Description'])}} 提交 关

问题不在于 flex(您的容器可能是全宽),而在于控件本身。它的 css 没有指示它获取所有可用的 space.

所以你必须把 width: 100% 放在你的控件的 css 代码中。