Posted on: 9/17/2014 8:17:42 PM | Views : 367

I am trying to test a simple menu control rendered as a list, but I cannot get the item wrap to work if I set a width for my menu items. IE11, by the way. What is wrong? I would love to put all of this in a CSS file and use CSSClass, but I am really confused about how to generate the CSS for the properties I want.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2" %> <!DOCTYPE html> <html> <head runat="server"> <title></title> <style type="text/css"> </style> </head> <body> <form id="form1" runat="server"> <div> <asp:Menu ID="Menu1" runat="server" IncludeStyleBlock="true" StaticDisplayLevels="1" MaximumDynamicDisplayLevels="10" ItemWrap="true&qu ...

Go to the complete details ...