Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

semantic ui how to offset

Tags:

semantic-ui

How can you offset columns in Semantic ui like you can in Bootstrap?

eg- in bootstrap a column with class "col-sm-5 col-sm-offset-2" is 5 column wide and skipping the first 2 column of the page.

like image 976
Sarthak Avatar asked Apr 02 '16 22:04

Sarthak


2 Answers

As offsets are not supported in Semantic UI's grid the only way I could think of working around this limitation is to insert an empty column where you need the offset:

<div class="one wide column"></div>
like image 152
Ben Avatar answered Oct 08 '22 06:10

Ben


There is no predefined classes available for Offsetting Grids in Semantic UI.

https://github.com/Semantic-Org/Semantic-UI/issues/863

like image 31
Rajdeep Gautam Avatar answered Oct 08 '22 08:10

Rajdeep Gautam