Currently, I'm in the process of developing a web application with the help of semantic-ui
. The primary objective is to design a layout that comprises a sidebar along with a main content area. Initially, I assumed that utilizing grid would be the most suitable approach, but it presented a few challenges:
- There is excess spacing/gutters between the columns and rows
- The only way to eliminate the gutters is by assigning a column color using something like
, which unfortunately results in overlapping with other content<div class="four wide black column">
It appears that grids might not be the ideal solution for creating page layouts, even though they offer functionalities that prove beneficial for page layouts, such as defining section sizes like four wide column
, ten wide column
, and so on.
So, I'm curious to know what the best practice is for laying out web applications using Semantic-UI, especially when it involves designing a simple sidebar and main content columns?