Currently, I am attempting to design a vertical left menu utilizing semantic-ui, resembling an admin menu. In order to align it to the left side of the page, I have utilized the rail element provided by semantic-ui. However, I am facing an issue where my content is not visible.
Despite trying out the sample code available on the website, the outcome remains unchanged. What could be the missing piece in this puzzle?
<body>
<div class="ui segment">
<div class="ui left dividing rail">
<div class="ui segment">
Left Rail Content
</div>
</div>
<div class="ui right dividing rail">
<div class="ui segment">
Right Rail Content
</div>
</div>
<p></p>
<p></p>
</div>
</body>
I've noticed that even the semantic-ui documentation site employs a similar method for displaying their right menu. If there's a more optimal way to create an admin menu, using semantic ui, please feel free to suggest an alternative approach.