I have an asp menu, with only 1 (top) level of menu items. Each of the menu items needs to have a different way to be recognized by CSS (for unique hover, etc.). I'm trying to avoid a javascript solution.
Currently I can find no way with just asp and CSS to control individual menu items. Any help would be appreciated!
<asp:Menu ID="NavigationMenu" runat="server" CssClass="menu" EnableViewState="false"
IncludeStyleBlock="false" Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/Default.aspx" Text="My Tab" />
<asp:MenuItem NavigateUrl="foo.aspx" Text="etc" />
</Items>
</asp:Menu>