To add a red star/asterisk to a required fields can use this css
.required:after {
content: "*";
color: #d00;
padding-left:1%;
}
Then in HTML use the class=”required” for the label or span
To add a red star/asterisk to a required fields can use this css
.required:after {
content: "*";
color: #d00;
padding-left:1%;
}
Then in HTML use the class=”required” for the label or span