Adding asterisk to required fields in Bootstrap 3

前端 未结 7 581
粉色の甜心
粉色の甜心 2021-01-29 17:56

My HTML has a class called .required that is assigned to required fields.

Here is the HTML:

7条回答
  •  时光说笑
    2021-01-29 18:11

    This works for me:

    CSS

    .form-group.required.control-label:before{
       content: "*";
       color: red;
    }
    

    OR

    .form-group.required.control-label:after{
       content: "*";
       color: red;
    }
    

    Basic HTML

提交回复
热议问题