Angular 4 CSS Classes

Angular 5 and 4 CSS Classes for Forms Validation - CSS Style

The forms are building blocks of any web and mobile applications and Angular 5 and 4 provides us two approaches for developing apps(Angular forms) -
1)      Template Driven Forms

The CSS classes for Angular Control
Just like AngularJs 1.x, Angular automatically shiners many control properties onto the form control element as CSS classes. These Angular classes look like –
1)      .ng-valid
2)      .ng-invalid
3)      .ng-pending
4)      .ng-pristine
5)      .ng-dirty
6)      .ng-untouched
7)      .ng-touched

The example looks like
.ng-valid[required], .ng-valid.required  {
    font-size: 16px;
    text-align: center;
    border-left: 10px solid rgb(218, 200, 43); /* yellow */
}

.ng-invalid:not(form)  {
    font-size: 16px;
    text-align: center;
    border-left: 10px solid #e94646; /* red */
}

In the above example, the “ng-valid” and “ng-invalid” classes is used to set the fonts size, color and align of each form control's.

In the HTML page looks like
//The .ng-valid[required] rule is valid for
<input class="ng-valid" required>

//The .ng-valid.required rule is valid for
<input class="ng-valid required">

//Both rules are valid for
<input class="ng-valid required" required>



I hope you are enjoying with this post! Please share with you friends. Thank you!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Angular 5 and 4 CSS Classes for Forms Validation - CSS Style Angular 5 and 4 CSS Classes for Forms Validation - CSS Style Reviewed by Anil Singh on 11:13 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^