Adding asterisk to required fields in Bootstrap 3

前端 未结 7 732
粉色の甜心
粉色の甜心 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 17:58

    The other two answers are correct. When you include spaces in your CSS selectors you're targeting child elements so:

    .form-group .required {
        styles
    }
    

    Is targeting an element with the class of "required" that is inside an element with the class of "form-group".

    Without the space it's targeting an element that has both classes. 'required' and 'form-group'

提交回复
热议问题