Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.
XhmikosR edited this page Aug 10, 2017 · 1 revision

E050

.form-groups should not be nested.

In Bootstrap v3, .form-groups do not support nesting.

Wrong:

<div class="form-group">
  ...

  <div class="form-group">
      ...
  </div>
</div>

Right:

<div class="form-group">
    ...
</div>
<div class="form-group">
    ...
</div>
Clone this wiki locally