是否可以在文本字符串的末尾添加星号<label>
?
这就是我所拥有的,但星号(当然)显示在整个标签后面:
<label class="xy-form-label-required" for="zipcode">
Zip Code
<span class="xy-form-labelinfo">
Allowed characters a-z A-z 0-9 ,.-
Could also be an information about the field...
</span>
</label>
我的 CSS 代码:
form.xy-form .xy-form-label-required:after {
color: grey;
content: ' *';
}
这是结果:
邮政编码
允许的字符 az Az 0-9 ,.-
*
这就是我想要在不更改 html 标记的情况下实现的目标。
邮政编码*
允许的字符 az Az 0-9 ,.-