ASP菜单宽度未设置为100%

时间:2012-09-11 11:39:12

标签: c# asp.net css menu aspmenu

我正在使用Asp菜单制作垂直导航栏。我试图将宽度设置为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;
}

这是菜单。

Vertical Menu

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

你能帮助我吗?

2 个答案:

答案 0 :(得分:2)

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

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

答案 1 :(得分: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;
    }