简体   繁体   中英

Adding an asterisk BEFORE the colon on a required form label

I am trying to make a form which has some required fields, and I want to add an asterisk on the labels for the required input fields. The problem I'm having is that I can't find a way to make it so that the asterisk comes BEFORE the colon, and not after. It needs to look like this: 标签的外观

But right now it looks like this:

标签现在的外观

This is my html:

<li class="form-row">
  <label class="required" for="first-name">First Name:</label>
  <input type="text" placeholder="John" required/>
</li> 

And my CSS for how I originally tried to solve this issue:

.required:after {
   content: "*"
 }

Assuming you can modify the HTML, you can just insert a <span> tag around the colon, and then use the target .required span:before :

 .required span:before { content: "*" } 
 <li class="form-row"> <label class="required" for="first-name">First Name<span>:</span></label> <input type="text" placeholder="John" required/> </li> 

 .firstName span:before { content: "*"; color: red; } 
 <label class='firstName' for='first-name'> First Name<span>:</span> </label> <input type='text' placeholder='required' /> 

You can try like below:

 .required:after { content: "* :"; display:inline-block; background:#fff; margin-left:-4px; } 
 <label class="required" for="first-name">First Name:</label> <input type="text" placeholder="John" required/> 

Since this is already somewhat style-abuse to produce content, why not make the ":" part of the style too?

 label::after { content: ":"; } label.required::after { content: "*:"; } 
 <label class="required" for="first-name">First Name</label><br> <label for="first-name">Last Name</label> 

Also, note that ::after is supposed to have two colons.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM