Forum Moderators: not2easy
I have created Menu Bar in my site in which i have used both <DIV> and <TD> both... Is it feasible for Browser dependency? But there is a problem in Firefox browser... But the format is not proper...
One more confusion is that some SEO Experts says that it is not good to use both <div> and <td>... Is it affect in Site SEO?
Please give me feedback
Once you know CSS, a lot more should be possible with CSS than you ever had as ability in thinking in terms of cells in a table.
Don't make the mistake of thinking you need lots of <div>s in your html code. It's probably equally bad as using tables to go overboard on divs, spans and the like.
I think the advanced CSS "settled" menu-structure in html is:
<ul id="menu">
<li><a href="#">item1</a></li>
<li><a href="#">item1</a></li>
...
</ul>
Add in a method to choose which item is "selected" in the menu (e.g. the section you're in) by adding a class="select" on the appopriate <li> and that's it for the html.
Next comes the CSS, there are literally thousands of ways to get a menu out of that list, so it's limited by your fantasy on one end and what IE6 will support.
So what do you like your menu to look like ?