Please tell me how to make the field highlighting in Bootstrap as in the screenshot, I just do not need validation, I’m interested in highlighting the image, fields, adding a check mark. For example:

<div class="col-md-4 selectContainer"> <div class="input-group"> <span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span> <input type="text" name="User" id="User" class="form-control"> </div> </div> 

Thanks for the replies, don't be hard on beginners. enter image description here

  • And what in this context is considered a highlight? In the bootstrap, in fact, the text color changes, the background color is added and a symbol is added (for example, a check mark), that’s all the stylization. To do this, you need to create a class with this styling and add it to the required fields. - lexxl
  • Thanks for the idea, I'll try to do it. - Fox

1 answer 1

http://getbootstrap.com/css/#forms-control-validation look here, like your case? there will be a little lower with a picture before input and with a check mark

  • Thank you, what you need, you need to read the manual more)) - Fox