Hello
In the html/css below, "area-flags" keeps showing above "tip-container" on IE.
There is no problem on Firefox, Safari, Opera, Chrome.
Would someone know what causes the problem?
Thanks
In the html/css below, "area-flags" keeps showing above "tip-container" on IE.
There is no problem on Firefox, Safari, Opera, Chrome.
Would someone know what causes the problem?
Thanks
Code:
<html>
<head>
<style type="text/css">
#temp-clear {
clear: both;
}
#area-top-nav {
}
#area-top-nav-left {
float: left;
margin: 0px;
font-size: 14px;
}
#area-top-nav-left a {
float: left;
display: block;
padding: 11px 22px 11px 22px;
text-decoration: none;
background-color: #FFFFFF;
color: #6B9DFF;
letter-spacing: 4px;
border-right: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
position: relative;
}
#area-top-nav-left a:hover {
background-color: #FFA518;
color: #FFFFFF;
border-top: 1px solid #FFFFFF;
}
#area-top-nav-left a .tip-container {
display: none;
position: absolute;
}
#area-top-nav-left a:hover .tip-container {
display: block;
position: absolute;
z-index: 99;
left: 0px;
top: 28px;
border-bottom: 4px dashed #6B9DFF;
}
#area-top-nav-left a:hover .tip {
display: block;
height: 120px;
background-color: #6B9DFF;
font-weight: normal;
font-size: 11px;
letter-spacing: 0px;
color: #ffffff;
width: 400px;
margin-top: 11px;
text-align: left;
font-family: verdana;
line-height: 16px;
}
#area-top-nav-left a:hover .tip-text {
display: block;
padding: 11px 22px 11px 22px;
}
#area-top-nav-left .ispage {
background-color: #FFA518;
color: #FFFFFF;
border-top: 1px solid #FFFFFF;
}
#area-flags {
display: block;
position: absolute;
z-index: 2;
top: 60px;
left: 22px;
font-weight: bold;
color: #C1D5E0;
font-size: 12px;
}
#area-flags .text {
margin-right: 11px;
}
#area-flags .islang .text {
color: #6B9DFF;
}
#area-flags a {
display: inline-block;
text-decoration: none;
color: #C1D5E0;
margin-right: 11px;
}
#area-flags a:hover {
color: #FFA518;
}
</style>
</head>
<body>
<center>
<div id="area-top-nav">
<h1 id="area-top-nav-left">
<a href="#">
<span class="text">Title 1</span>
<span class="tip-container">
<span class="tip">
<span class="tip-text">
Description 1 Description 1 Description 1 Description 1 Description 1 Description 1
</span>
</span>
</span>
</a>
<a href="#">
<span class="text">Title 2</span>
<span class="tip-container">
<span class="tip">
<span class="tip-text">
Description 2 Description 2 Description 2 Description 2 Description 2 Description 2
</span>
</span>
</span>
</a>
<a href="#">
<span class="text">Title 3</span>
<span class="tip-container">
<span class="tip">
<span class="tip-text">
Description 3 Description 3 Description 3 Description 3 Description 3 Description 3
</span>
</span>
</span>
</a>
<div id="temp-clear"></div>
</h1>
</div>
<div id="area-flags">
<span class="islang">
<span class="text">Français</span>
</span>
<a href="en/">
<span class="text">English</span>
</a>
</div>
</center>
</html>