蓝图修复了菜单高度

时间:2010-11-25 19:07:18

标签: asp.net css blueprint-css

当下面的标记呈现时,菜单呈现为高度为51的表topMainMenu。当我删除蓝图样式表时,topMainMenu呈现高度为20,我认为最小值。 / p>

<head runat="server">
    <title></title>
    <link rel="stylesheet" type="text/css" href="Styles/Blueprint/screen.css" />
    <script src="<%# ResolveUrl("~/Scripts/jquery-1.4.4.js")%>" type="text/javascript"></script>
</head>
<body>
    <form id="form" runat="server">
    <div class="prepend-1 span-22 last">
        <asp:Menu ID="topMainMenu" runat="server" DataSourceID="mainMenuDataSource" Orientation="Horizontal" Width="100%" Height="16px">
            <StaticMenuStyle Height="10px" BackColor="Navy" />
        </asp:Menu>
    </div>
    </form>
</body>

我认为蓝图在这种情况下对任何高度都没有影响。肯定CSS重置不会做这个?我尝试过没有样式可以将菜单高度缩小到51以下。我该怎么办?

1 个答案:

答案 0 :(得分:0)

这应该覆盖你的蓝图css

<div class="prepend-1 span-22 last" style="height:20px;line-height:20px;">

OR

<style>
.adjustHeight {
    height:20px; line-height:20px; margin:0; padding:0;
}
</style>
<div class="prepend-1 span-22 last adjustHeight">