我在我的 VS2010 Web 应用程序中使用 ASP.NET 菜单控件,我在动态菜单项可点击区域出现问题,所以我使用 style=display:block 现在可以了,但不幸的是我的动态菜单项字体大小不能现在变了!!在使用 display:block 之前它们还可以(大),但现在它们显示得更小了,我无法更改它们的大小,我在我的风格中使用了 font-size:large,并且还在控制标签中设置了 font-size="large"但仍然没有运气!这里出了什么问题?我怎样才能把这两件事都做好?
我在 DynamicMenuItemStyle 中使用 cssstyle="myStyle",当我删除我的 cssstyle 时,会执行字体更改!
这是我的菜单:...
<DynamicMenuItemStyle HorizontalPadding="5" Font-Size="XX-Large" CssClass="MenuFullClick" />
<DynamicMenuStyle BackColor="#E6C679" Font-Size="XX-Large" Width="230px" />
<DynamicHoverStyle Font-Size="XX-Large" Width="230px" />
这是我的CSS:
.MenuFullClick
{
display: block;
color:White;
Height:40px;
Width:230px;
font-size:xx-large;
}
我最终渲染的 HTML 是这样的: ...
<table border="0" cellpadding="0" cellspacing="0">
<tr onmouseover="Menu_HoverDynamic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" id="Menu1n6">
<td><table class="MenuFullClick Menu1_4" cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a class="Menu1_1 MenuFullClick Menu1_3" href="products.aspx?id=1" style="border-style:none;font-size:1em;">انواع دستمال کاغذی</a></td><td style="width:0;"><img src="Images/arrow.png" alt="Expand انواع دستمال کاغذی" style="border-style:none;vertical-align:middle;" /></td>
</tr>
</table></td>
</tr><tr onmouseover="Menu_HoverDynamic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(event)" id="Menu1n7">
<td><table class="MenuFullClick Menu1_4" cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td style="white-space:nowrap;width:100%;"><a class="Menu1_1 MenuFullClick Menu1_3" href="pr1.aspx?catcode=9" style="border-style:none;font-size:1em;">پوشک بچه</a></td>
</tr>
</table></td>
谢谢