- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个菜单可以在除 IE7 之外的所有浏览器中完美运行,我需要一双新的眼睛,因为我似乎找不到这个问题的原因。
在菜单中,有些元素在左侧有标志(已编辑以删除客户名称):
这是它在 IE7 中的样子:
在 IE7 中,我认为 div 正在发生冲突,因此标志 div 位于右侧 div 的顶部并被强制向下,在菜单中创建中断。
为了更好地解释,这里是菜单的代码(由样式化的无序列表组成):
<li id="menu_worldwide"><a href="javascript:;">WORLDWIDE</a>
<ul>
<li><a href="/global.asp" id="launch_map">Worldwide Map</a></li>
<li><a href="/map.asp" id="launch_map_plantyard">Plants & Yards</a></li>
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-ca.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"> <a href="http://www.xxxxx.com/" target="_blank">Canada<br />
<em class="language">(English)</em></a></div>
</li>
<li>
<div class="menu_flag_2line"><img src="/images/flags/Icons-flag-eu.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="javascript:;">Europe<br />
<em class="language_nomargin">(Multi-language) </em><img src="/images/arrow.png" width="11" height="11" border="0" /></a></div>
<ul class="left">
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-gb.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="http://www.xxxxx.com/international/english/home.htm" target="_blank">UK<br />
<em class="language">(English)</em></a></div>
</li>
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-fr.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="http://www.xxxxx.com/international/francais/home.htm" target="_blank">France<br />
<em class="language">(Français)</em></a></div>
</li>
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-de.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="http://www.xxxxx.com/international/deutsch/home.htm" target="_blank">Deutschland<br />
<em class="language">(Deutsch)</em></a></div>
</li>
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-es.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="http://www.xxxxx.com/international/espanol/home.htm" target="_blank">España<br />
<em class="language">(Español)</em></a></div>
</li>
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-nl.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="http://www.xxxxx.com/international/nederlands/home.htm" target="_blank">Nederland<br />
<em class="language">(Nederlands)</em></a></div>
</li>
</ul>
</li>
<li>
<div class="menu_flag"><img src="/images/flags/Icons-flag-mx.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"> <a href="http://www.xxxxx.com/" target="_blank">Mexicana<br />
<em class="language">(español)</em></a></div>
</li>
以及 CSS 代码:
.menu {
position: relative;
/* left: auto;
right: auto;
*/ top: 143px;
#top: 135px; /* Fix for IE 7 only */
width: 100%;
height:28px;
z-index:100000;
font-family:Arial, Helvetica, sans-serif;
background-color: #669900;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-top-color: #000;
border-right-color: #000;
border-bottom-color: #000;
border-left-color: #000;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0;
list-style-type:none;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
left: 0px;
top: 0px;
#padding: 0px;
#margin: 0px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:14px;
text-decoration:none;
color:#ffffff;
height:28px;
padding-left:10px;
padding-right:10px;
font-weight:bold;
background-color: #669900;
font-family: Arial, Helvetica, sans-serif;
line-height: 26px;
border-top-width: 0px;
border-right-width: 0;
border-bottom-width: 0px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #333333;
border-right-color: #333333;
border-bottom-color: #333333;
border-left-color: #333333;
text-shadow: 0px 1px 1px #000;
}
/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
color:#FFFFFF;
background-color: #000000;
}
.menu :hover > a, .menu ul ul :hover > a {
color:#FFFFFF;
background-color: #000000;
}
.menu_flag_link {
font-size: 11px;
position: relative;
margin: 0px;
padding: 0px;
#margin-left: 20px;/* Fix for IE 7 only */
#left: -20px;/* Fix for IE 7 only */
#top: 0px;/* Fix for IE 7 only */
}
.language {
font-size: 10px;
line-height: 10px;
margin-left: 20px;
#margin-left: 0px;/* Fix for IE 7 only */
}
.language_nomargin {
font-size: 10px;
line-height: 10px;
}
.menu_flag_holder {
margin: 0px;
padding: 0px;
width: 180px;
position: relative;
}
.menu_flag {
position: relative;
padding: 0px;
left: 10px;
top: 5px;
margin-top: 0px;
margin-right: 15px;
#margin-right: 35px;/* Fix for IE 7 only */
margin-bottom: 0px;
margin-left: 0px;
float: left;
#width: 16px;/* Fix for IE 7 only */
z-index: 100;
#clear: both;
}
.menu_flag_2line {
position: relative;
padding: 0px;
left: 10px;
top: 5px;
margin-top: 0px;
margin-right: 15px;
#margin-right: 7px;
margin-bottom: 10px;
#margin-bottom: 0px;
margin-left: 0px;
float: left;
#width: 16px;/* Fix for IE 7 only */
z-index: 100;
}
/* ---------------------------------------2-------------------------------------------------*/
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background-color: #669900;
background-image: url(../images/arrow.png);
background-repeat: no-repeat;
background-position: 130px center;
}
/* style the second level hover */
.menu ul ul a.drop:hover {
background-color: #000000;
background-image: url(../images/arrow.png);
background-repeat: no-repeat;
background-position: 130px center;
}
.menu ul ul :hover > a.drop {
background-color: #000000;
background-image: url(../images/arrow.png);
background-repeat: no-repeat;
background-position: 130px center;
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
color:#FFFFFF;
height:auto;
line-height:normal;
padding:5px 10px;
width:160px;
border-width:0 1px 1px 1px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: normal;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
width:161px;
w\idth:160px;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:28px;
left:0;
width:182px;
border-top:1px solid #000000;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
visibility:visible;
}
/* ---------------------------------------3-------------------------------------------------*/
/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
background-color: #669900;
}
/* style the third level hover */
.menu ul ul ul a:hover {
background:#000000;
}
/* position the third level flyout menu */
.menu ul ul ul {
left:181px;
top:-1px;
width:182px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-181px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
position:absolute;
top:0;
left:0;
border-collapse:collapse;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
visibility:visible;
}
/* ---------------------------------------4-------------------------------------------------*/
/* position the fourth level flyout menu */
.menu ul ul ul ul {
left:181px;
top:-1px;
width:182px;
}
/* position the fourth level flyout menu for a left flyout */
.menu ul ul ul ul.left {
left:-181px;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul {
visibility:hidden;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
visibility:visible;
}
<li>
<div class="menu_flag_2line"><img src="/images/flags/Icons-flag-cl.gif" width="16" height="11" border="0"></div>
<div class="menu_flag_link"><a href="http://www.xxxxx.com/" target="_blank">Tuberias<br />
<em class="language">(español/português)</em></a></div>
</li>
</ul>
</li>
问题似乎出在类“.menu_flag_2line”、“.menu_flag”和“.menu_flag_link”
我完全被难住了,有人有什么建议吗?
最佳答案
需要将 2 个 div 包装在定位元素中以便 IE7 正常播放:
ul.left li {position:relative; float:left; width:100%;}
关于css - IE7 div 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9523460/
我是网页设计新手。现在我遇到了我目前工作的 2 个网站的问题。我的模板只支持 Firefox 浏览器,不支持其他主流浏览器,如 IE、chrome、Opera、safari。 我试过一些 If IE
在我的 HTML 上,使用了下面的元标记来解决一些字体问题。我只想知道: 这两个元标记的含义相同吗?还是每一个都不一样? [以逗号分隔] [以分号分隔] 请解释一下。 最佳答案 Microsoft
这句话究竟是什么意思? 部分示例使用 ,分隔 IE 的版本,而有些使用 ; ;哪个是正确的? 订单IE=9; IE=8; IE=7; IE=EDGE有一些重要性,我想知道。 编辑:我正在使用 最佳答
这句话究竟是什么意思? 一些示例使用 ,分隔 IE 的版本,而有些使用 ; ;哪个是正确的? 订单IE=9; IE=8; IE=7; IE=EDGE有一定的重要性,我想知道。 编辑:我正在使用 最佳
在 IE 8 中,我们可以带出开发者工具。然后在顶部,有一个浏览器模式: IE 7 IE 8 IE 8 Compatibility View 所以如果 IE 7是强制页面显示为好像浏览器是 IE 7,
我认为不需要任何描述。我只需要我的 IE 11 单选按钮与 IE 8 中的一样,即颜色为 3-d 蓝色。在 IE 11 中,默认单选按钮是二维的,颜色为黑色。目前还没有解决这个问题。 最佳答案 检查这
我必须编写一个显示密码对话框的小程序。问题是对话框设置为始终在顶部,但是当用户单击 IE 窗口时,对话框仍然隐藏在 IE 窗口后面。并且由于对话框是模态的并且保持全部 IE 线程 IE Pane 不会
如何制作适用于所有 IE 浏览器的样式表。不只是 ie.css 中的 IE 8 本站主题的ie.css文件中只包含IE8样式。 最佳答案 他们这样做的原因是因为他们可能不支持 Internet Exp
使用有什么区别吗 ... 或者 ... ? 最佳答案 如果一种罕见的、神话般的浏览器被称为 ,就会有所不同。 Internet Explorer 6.66 被发现。 关于internet-explor
我试图在 IE7+8 中使用字体图标并遇到了一个问题,这个问题可以通过仅 IE7 的样式表轻松解决。长话短说,现在 IE7 和 IE9 都以某种方式运行我的仅 IE7 样式表(IE8 运行得很好)。我
我实现了上传的图片显示在网站上。为了 图片未正确上传意味着我将错误图片替换为 那?当我加载网站时,我遇到了 错误图像不存在的问题 定义,并且灯箱在 chrome 和 firefox 中加载 但它没有在
我有一个特殊的问题。我正在尝试“现代化”和为旧 IE 制作的旧应用程序,以便在 IE 11 中工作。但不知何故,CSS 类没有应用于 DOM 元素。 CSS 非常简单: .header { h
对于 IE 7 和 IE 8,IE 上 URL 的 2k 长度限制是否仍然存在? (后 IE 6 时代) 最佳答案 http://support.microsoft.com/kb/208427 似乎它
我们正在完善这个网站:dev.underglassframing.com 除了主要内容 div (#main) 后面的背景在 IE 7、8 和 9 中的内容之前停止外,在每个浏览器中一切都很好。我在末
我在 IE 11 中搜索过与 border-radius 相关的类似问题,但是 only one found on the Microsoft IE Developer site描述了自从“升级”到
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit th
这个问题在这里已经有了答案: (CSS?) Eliminating browser's 'selected' lines around a hyperlinked image? (5 个答案) 关闭
我知道有 1000 个问题,但我就是无法让它发挥作用。我只是想针对所有版本的 IE(包括 IE11)并给 html 一个特定的类,对于所有其他浏览器(firefox、opera、chrome),我希望
我有一个嵌入了 Internet Explorer 的程序。 在某些情况下,我需要调整嵌入式 IE 的缩放级别。我正在使用带有 OLECMDID_OPTICAL_ZOOM 的 ExecWB 命令来执行
我正在开发一个网络应用程序。我的应用程序在 chrome 和 firefox 上运行良好,但由于某种原因在 IE 中出现了一些错误。即使出现几个错误,应用程序仍然可以顺利运行,没有明显的问题。 我想对
我是一名优秀的程序员,十分优秀!