- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将完全相同的 css 和 asp 代码复制并粘贴到另一个元素中,但 CSS 无法应用到 asp:menu 控件中,我无法理解。此外,当我查看源代码时,菜单正在创建自己的样式 block 。
我让帮助变得简单,您只需复制并粘贴下面的完整页面代码和 CSS。非常感谢您的帮助。
这是完整的 aspx 页面:
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="testing.aspx.vb" Inherits="eCASVS2005.testing" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolKit" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head id="Head1" runat="server">
<title></title>
<%="" %>
<link href="eCASScripts/cssMasterPage.css" rel="stylesheet" type="text/css" />
<% If False Then%> <!-- fix for seeing css in design view and handling url after deployed -->
<link href="<%= Page.ResolveUrl("~/eCASScripts/cssMasterPage.css")%>" rel="stylesheet" type="text/css" />
<% End If%>
</head>
<body>
<form id="Form1" runat="server" enctype="multipart/form-data" method="post">
<div class="page">
<div class="header left">
<div class="title left">
<h1>
MLG Dispatch Manager
</h1>
</div>
<div class="left">
<asp:Menu ID="NavigationMenu"
runat="server"
CssClass="myMenu"
EnableViewState="false"
IncludeStyleBlock="false"
Orientation="Horizontal">
<Items>
<asp:MenuItem NavigateUrl="~/Default.aspx" Text="Home"/>
<asp:MenuItem NavigateUrl="" Text="Dispatch">
<asp:MenuItem NavigateUrl="~/Dispatch/NewDispatchEntry.aspx" Text="New Entry" />
<asp:MenuItem NavigateUrl="~/Dispatch/SearchDispatchEntries.aspx" Text="Find Existing" />
<asp:MenuItem NavigateUrl="~/Dispatch/ViewDispatchHistory.aspx" Text="View History" />
</asp:MenuItem>
<asp:MenuItem NavigateUrl="" Text="Maintenance">
<asp:MenuItem NavigateUrl="~/Maintenance/EditTrailers.aspx" Text="Edit Trailers" />
<asp:MenuItem NavigateUrl="~/Maintenance/EditCarriers.aspx" Text="Edit Carriers" />
<asp:MenuItem NavigateUrl="~/Maintenance/EditDrivers.aspx" Text="Edit Drivers" />
</asp:MenuItem>
<asp:MenuItem NavigateUrl="~/UnderConstruction.aspx" Text="Help"/>
</Items>
</asp:Menu>
</div>
<div id="loggedInText" class="loginDisplay right" runat="server">
logged in: [User Name]
</div>
</div>
</div>
</form>
</body>
</html>
这是完整的 CSS:
/* DEFAULTS
----------------------------------------------------------*/
body
{
background: #b6b7bc;
font-size: .80em;
font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
margin: 0px;
padding: 0px;
color: #696969;
height:100%;
}
a:link, a:visited
{
color: #034af3;
}
a:hover
{
color: #1d60ff;
text-decoration: none;
}
a:active
{
color: #034af3;
}
p
{
margin-bottom: 10px;
line-height: 1.6em;
}
table
{
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
}
/* HEADINGS
----------------------------------------------------------*/
h1, h2, h3, h4, h5, h6
{
font-size: 1.5em;
color: #666666;
/* font-variant: small-caps; */
text-transform: none;
font-weight: 200;
margin-bottom: 0px;
}
h1
{
font-size: 1.5em;
padding-bottom: 0px;
margin-bottom: 0px;
}
h2
{
font-size: 1.5em;
font-weight: 600;
}
h3
{
font-size: 1.2em;
}
h4
{
font-size: 1.1em;
}
h5, h6
{
font-size: 1em;
}
/* this rule styles <h1> and <h2> tags that are the
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
margin-top: 0px;
}
.state
{
width:116px;
}
/* PRIMARY LAYOUT ELEMENTS
----------------------------------------------------------*/
.page
{
width: 1020px;
background-color: #fff;
margin: 40px auto 0px auto;
border: 1px solid #496077;
}
.widthFullPx
{
width: 900px;
}
.header
{
position: relative;
margin: 0px;
padding: 0px;
background: #4b6c9e;
width: 100%;
}
.header h1
{
font-weight: 700;
margin: 0px;
padding: 0px 0px 0px 20px;
color: #f9f9f9;
border: none;
line-height: 2em;
font-size: 1.5em;
}
.main
{
padding: 0px 12px;
/*min-height:500%;*/
min-height:100%;
margin-right: 8px;
margin-top: 10px;
margin-bottom: 8px;
}
.leftCol
{
padding: 6px 0px;
margin: 12px 8px 8px 8px;
width: 200px;
min-height: 200px;
}
.footer
{
color: #4e5766;
padding: 8px 0px 0px 0px;
margin: 0px auto;
text-align: center;
line-height: normal;
}
#headerSeparator
{
background-color:White;
width:1px;
height:35px;
margin:0px 0px 0px 10px;
}
/* TAB MENU
----------------------------------------------------------*/
div.myMenu > ul > li
{
display: inline-block;
list-style: none;
}
div.myMenu ul li ul
{
display: none;
}
div.hideSkiplink
{
background-color:#3a4f63;
width:100%;
}
div.myMenu
{
padding: 5px 0px 5px 40px;
}
div.myMenu ul
{
list-style: none;
margin: 0px;
padding: 0px;
width: auto;
}
div.myMenu ul li a, div.myMenu ul li a:visited
{
background-color: #465c71;
border: 1px #4e667d solid;
color: #dde4ec;
display: block;
line-height: 1.35em;
padding: 4px 20px;
text-decoration: none;
white-space: nowrap;
}
div.myMenu ul li a:hover
{
background-color: #bfcbd6;
color: #465c71;
text-decoration: none;
}
div.myMenu ul li a:active
{
background-color: #465c71;
color: #cfdbe6;
text-decoration: none;
}
/* FORM ELEMENTS
----------------------------------------------------------*/
fieldset
{
margin: 1em 0px;
padding: 1em;
border: 1px solid #ccc;
}
bolFieldSet
{
background-color:Fuchsia;
margin: 1em 0px 1 0;
padding: 0em;
border: 1px solid #ccc;
}
fieldset p
{
margin: 2px 12px 10px 10px;
}
fieldset.login label, fieldset.register label, fieldset.changePassword label
{
display: block;
}
fieldset label.inline
{
display: inline;
}
legend
{
font-size: 1.1em;
font-weight: 600;
padding: 2px 4px 8px 4px;
}
input.textEntry
{
width: 320px;
border: 1px solid #ccc;
}
input.passwordEntry
{
width: 320px;
border: 1px solid #ccc;
}
div.accountInfo
{
width: 42%;
}
/* MISC
----------------------------------------------------------*/
.hidden{display: none;}
.autowidth
{
width:auto;
}
.width100pct
{
width:100%;
}
.largetext
{
font-size:large;
}
.medtext
{
font-size:medium;
}
.clear
{
clear: both;
}
.center
{
text-align: center;
vertical-align:middle;
}
.left /* floats left */
{
float:left;
}
.right /* floats right */
{
float:right;
}
就像我说的,这个完全相同的代码正在另一个元素中工作,我无法弄清楚这个。每个相同的 css 版本,2.1。谢谢。 -泰勒
最佳答案
感谢这里用户的一些指导,我发现了这个问题。检查菜单控制元素后,它呈现为 <table>
。而我曾经在其上使用过此控件的所有其他元素都呈现为 <div>
这是与其他情况相同的人的链接:
http://forums.asp.net/t/1613711.aspx
对我来说简单的解决方案是添加属性 RenderingMode="List"
到我的 asp:menu,它解决了我的问题。
感谢所有提供帮助的人。
关于asp.net - CssClass 不适用于我的 asp 菜单 - 所有代码均已附加,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15574306/
我在我的 Xcode 项目目录中输入了以下内容: keytool -genkey -v -keystore release.keystore -alias mykey -keyalg RSA \
假设我有一个像这样的 DataFrame(或 Series): Value 0 0.5 1 0.8 2 -0.2 3 None 4 None 5 None
我正在对一个 Pandas 系列进行相对繁重的应用。有什么方法可以返回一些打印反馈,说明每次调用函数时在函数内部进行打印还有多远? 最佳答案 您可以使用跟踪器包装您的函数。以下两个示例,一个基于完成的
我有一个 DataFrame,其中一列包含列表作为单元格内容,如下所示: import pandas as pd df = pd.DataFrame({ 'col_lists': [[1, 2
我想使用 Pandas df.apply 但仅限于某些行 作为一个例子,我想做这样的事情,但我的实际问题有点复杂: import pandas as pd import math z = pd.Dat
我有以下 Pandas 数据框 id dist ds 0 0 0 0 5 1 0 0 7 2 0 0
这发生在我尝试使用 Gradle 构建时。由于字符串是对象,因此似乎没有理由发生此错误: No signature of method: java.util.HashMap.getOrDefault(
您好,有人可以解释为什么在 remaining() 函数中的 Backbone 示例应用程序 ( http://backbonejs.org/examples/todos/index.html ) 中
我有两个域类:用户 class User { String username String password String email Date dateCreated
问题陈述: 一个 pandas dataframe 列系列,same_group 需要根据两个现有列 row 和 col 的值从 bool 值创建。如果两个值在字典 memberships 中具有相似
apporable 报告以下错误: error: unknown type name 'MKMapItem'; did you mean 'MKMapView'? MKMapItem* destina
我有一个带有地址列的大型 DataFrame: data addr 0 0.617964 IN,Krishnagiri,635115 1 0.635428 IN,Chennai
我有一个列表list,里面有这样的项目 ElementA: Number=1, Version=1 ElementB: Number=1, Version=2 ElementC: Number=1,
我正在编译我的源代码,它只是在没有运行应用程序的情况下终止。这是我得到的日志: Build/android-armeabi-debug/com.app4u.portaldorugby/PortalDo
我正在尝试根据另一个单元格的值更改单元格值(颜色“红色”或“绿色”)。我运行以下命令: df.loc[0, 'Colour'] = df.loc[0, 'Count'].apply(lambda x:
我想弄清楚如何使用 StateT结合两个 State基于对我的 Scalaz state monad examples 的评论的状态转换器回答。 看来我已经很接近了,但是在尝试申请 sequence
如果我已经为它绑定(bind)了集合,我该如何添加 RibbonLibrary 默认的快速访问项容器。当我从 UI 添加快速访问工具项时,它会抛出 Operation is not valid whi
在我学习期间Typoclassopedia我遇到了这个证明,但我不确定我的证明是否正确。问题是: One might imagine a variant of the interchange law
我是一名优秀的程序员,十分优秀!