Bootstrap 4 invalid feedback with input group not displaying

前端 未结 10 970
遇见更好的自我
遇见更好的自我 2021-02-04 00:38

I have been looking into Bootstrap 4 - beta, however when using .is-invalid with .input-group it doesn\'t seem to show up.

10条回答
  •  [愿得一人]
    2021-02-04 01:03

    You can always override styles using !important Add this to your custom css file

    .invalid-feedback{
        display: inline !important;
    }
    

提交回复
热议问题