所有css类都没有加载到网页中

时间:2012-07-06 13:46:07

标签: css visual-studio-2010 user-interface aspmenu-control

我将应用程序转换为VS 2010. asp:menu的css类未完全加载。当我点击浏览器的兼容视图时,css工作正常。

对可能出现的问题以及如何解决问题有所了解?

参考代码:

<div class="SetHeight">
            <asp:Menu ID="MasterMenu" runat="server" DataSourceID="SiteMapDataSource1" MaximumDynamicDisplayLevels="4"
                Orientation="Horizontal" StaticDisplayLevels="3" StaticMenuItemStyle-CssClass="tab"
                StaticSelectedStyle-CssClass="slctTab" CssClass="tabs" StaticSubMenuIndent="0px">
            </asp:Menu>
</div>

        .SetHeight
        {
            border-bottom: 1px solid red;
            margin-bottom: 5px;
            clear: both;
        }

        table.tabs
        {
            position: relative;
            top: 0px;
        }

        table.tab
        {
        }

        a.tab, a.tab:selected, a.tab:link, a.tab:active, a.tab:visited
        {
            background-color: Green;
            font-family: Arial, Verdana, Helvetica, sans-serif;
            font-weight: 650;
            text-decoration: none;
            color: White;
            padding: 2px 7px;
            display: block;
        }

        a.tab:hover
        {
            background-color: #009900;
        }

        a.slctTab, a.slctTab:hover, a.slctTab:link, a.slctTab:active, a.slctTab:visited
        {
            color: White;
            background-color: Blue text-decoration: none;
        }

1 个答案:

答案 0 :(得分:0)

你可以在这里找到答案。希望这能解决你的问题。在此我们在div中加载asp:菜单并将样式可见性显示为可见Asp.net default theme css menu problem