enter code here
enter image description hereI am new designing with angularflex , I want to make the third field in popup to acquire maxwidth using flexdesigning not with standard css width property ,can anyone help me
popup works!
{{validationErrors.getError(form.controls['Description'])}} {{validationErrors.getError(form.controls['Description'])}} {{validationErrors.getError(form.controls['Description'])}} Submit CloseThe issue is not with flex (your container is probably full width), but with the control itself. Its css does not instruct it to take all the available space.
So you have to put width: 100%
in the css code for your control.