Html Mandatory Field Asterisk Code Example


Example 1: html5 astrix for absolutely required field inside a td tag


<label class="required">Name:</label>
<input type="text">

<style>
.required:after
{
content:" *";
color: red;
}
</style>

Example 2: red asterix css


<span style="color:#ff0000">*</span>

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy