I currently have a navigation bar based on a list, which looks something like this:
https://i.stack.imgur.com/e1Dmb.png
My concern is how to position the "Logout" item on the right side of the screen. I've tried adding clear list items but that seems like a messy workaround and doesn't work across all screen resolutions.
This is what my list currently looks like:
<ul runat="server" id="tabs">
<li class="test">
<a href="DetailView.aspx?call=104"><span class="tab">
<strong>EnterData</strong></span></a>
</li>
<li class="test">
<a href="Overview.aspx"><span class="tab">
<strong>Overview</strong></span></a>
</li>
<li class="test">
<a href="Logout.aspx"><span class="tab">
<strong style="text-align: right">Logout</strong></span></a>
</li>
</ul>
So my question is, can I align this item to the right within the list structure? If not, I'm open to exploring alternative solutions. I hope I have explained my issue clearly. Thank you for your assistance!