Set space between elements - margin top/bottom

Viewed 2673

Is there any semantic ui class to put space (top/bottom) between components or I have to use css styles? Eg. Between two segments or between a header and a cards group, etc etc..

2 Answers

Yes there is. You have to use the hidden and divider classes.

<div class="ui hidden divider"></div>

To add to the answer above from @Ray, using a section divider gives you a super-divider!

  <div class="ui hidden section divider"></div>
Related