CSS 实现必填项前/后添加红色星号
xuexi 2023-07-14 22:43:27 发表在:CSS 查看数:1138

1 . 常规写法

<label><span style="color:red;">* </span>用户名 : </label>
<input type="text" value=""/>

2 . CSS写法(更简洁方便 , 而且便于统一调整样式)

<style>
    label.xrequired:before {
        content: '* ';
        color: red;
    }
</style>
<label class="xrequired">用户名 : </label>
<input type="text" value=""/>
最近访问时间:2025-04-29 23:22:56
知识库:340条鸣谢:TAY  备案号:蜀ICP备2024090044号