I'm a person that learns best from example. Currently, I'm diving into the field of Web Development after fifteen years of developing desktop apps. I'm still getting used to all the web technologies used for developing modern web sites and everywhere I look, I see cool little UI elements and question how they're implemented. So I thought I'd ask you, the web experts...the wexperts :)
What are some straight forward or creative ways you could code the SO Menu...
Stackoverflow logo | Questions | Tags | Users | Badges | Unanswered | SPACE | Ask Question
- Would you use a simple table (I know people harp on them as being bad, but remember I'm a noob)?
- Would it be wise to use CSS relative positioning? Or is that bad considering different browsers implement this differently?
- Could you use JQuery to implement this easily? Or GWT?
The code under the hood (and shown under this question) shows this menu as an unordered list, but I thought unordered lists are typically vertical and look like more like this list of questions I'm posting. How is the
<ul>
element being used as a menu in this case?<div id="hmenus"> <div class="nav"> <ul> <li class="youarehere"><a href="/questions">Questions</a></li> <li><a href="/tags">Tags</a></li> <li><a href="/users">Users</a></li> <li><a href="/badges">Badges</a></li>
Thanks in advance for all your help! You were more than helpful in the last, similarly structured question I asked. I really understood the concepts I've been reading about much much better after reading your responses :)