gpt4 book ai didi

c# - ASP 菜单宽度未设置为 100%

转载 作者:太空宇宙 更新时间:2023-11-04 04:56:26 24 4
gpt4 key购买 nike

我正在使用 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 控件,因为我必须访问服务器端的控件并对其进行动态更改。

你能帮帮我吗?

最佳答案

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

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

关于c# - ASP 菜单宽度未设置为 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12368872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com