Form Group component is missing

For some reason the Form Group component is missing in Bootstrap Studio, why is this?Form Group missing

There is no Form Group class in Bootstrap 5 if you want to use a Form Group class use Bootstrap 4

That was what I thought but wasn’t sure. If it doesn’t exist in BS5, then what would be used instead?

a div with the class mb-3 will be the same

<div class="mb-3">
  <label for=myTextInput" class="form-label">Label</label>
  <input type="text" class="form-control" id="myTextInput">
  ...
</div>
1 Like

Ah, okay. I wonder why they’d remove it? Thank you for your help :slight_smile: