0

我正在使用 Asp Menu 制作垂直导航栏。我正在尝试将宽度设置为 100%,但它保持原样。

这是我正在使用的代码。

<div id="leftcolumn" >
<asp:Menu ID="Menu1" runat="server" CssClass="Menu" RenderingMode="List">
<Items>
<asp:MenuItem Text="Inbox" Value="inbox"></asp:MenuItem>
<asp:MenuItem Text="Processing"></asp:MenuItem>
<asp:MenuItem Text="aslkdjf"></asp:MenuItem>
<asp:MenuItem Text="aslkdjf"></asp:MenuItem>
<asp:MenuItem Text="aslkdjf"></asp:MenuItem>
</Items>
</asp:Menu>
</div>

这是 Div 的 CssClass(左列)!

#leftcolumn{
float: left;
width: 200px; /*Width of left column*/
margin-left: -100%;
background: #C8FC98;}

这是菜单的 Css 类

.Menu
{  
 font-family: 'Open Sans', sans-serif;
 font-size: 13px;
 width:auto;
}

.Menu ul
{  
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

.Menu ul li
{
padding-bottom: 2px; /*bottom spacing between menu items*/

}

.Menu ul li a
{
color: black;
background: #E9E9E9;
display: block;
padding: 5px 0;
line-height: 17px;
padding-left: 8px; /*link text is indented 8px*/
text-decoration: none;
}

.Menu ul li a:hover
{
    background-image: none;
    color: white;
    background: black;
}

这是菜单。

垂直菜单

我需要使用 Asp:menu 控件,因为我必须访问服务器端的控件并动态更改它。

你能帮助我吗?

4

2 回答 2

2
Menu ul li
{
    width:150px !important;
    padding-bottom: 2px; /*bottom spacing between menu items*/
}

我添加了 Width 属性并为其定义了固定长度。然后我的问题就解决了。

于 2012-09-12T11:02:10.400 回答
0

以下代码可能会对您有所帮助。我已经在 Firefox 中使用 Firebug 检查了输出

    #leftcolumn
    {
        float: left;
        width: 600px; /*Width of left column*/            
        background: #C8FC98;
    }

    .Menu
    {
        font-family: 'Open Sans' , sans-serif;
        font-size: 13px;
        width: 100%;
        float:left;
    }

    .Menu ul
    {
        list-style-type: none;
        margin: 0;
        padding: 0;
        margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
        width:100% !important;
    }

    .Menu ul li
    {
        padding-bottom: 2px; /*bottom spacing between menu items*/
        float:left;
        line-height:40px;
    }
于 2012-09-11T12:48:20.350 回答