Mushaq Deen

Mushaq Deen

  • NA
  • 1
  • 1.7k

drop down list is not working in safari

Mar 12 2014 1:23 AM
i create a drop down list using html and css it is work in moz, chrom and opera but it is not working in safari please help me to solve this problem.
my html code is:

<div id="product_profile_drop_down">
<ul>
<li><area shape="rect" coords="275,285,394,318" href="#">
<ul>
<li><a href="methodology.html">Methodology</a></li>
<li><a href="syllabus.html">Syllabus</a></li>
<li><a href="price_list.html">Price List</a></li>
</ul>
</li>
</ul>
</div>


and my css code is:

#product_profile_drop_down{
margin: 0;
padding: 0;
}
#product_profile_drop_down ul{
margin: 0;
padding: 0;
line-height: 30px;
}
#product_profile_drop_down ul li{
margin: 0;
padding: 0;
list-style: none;
position: relative;
float:left;
}
#product_profile_drop_down ul li a{
text-decoration: none;
font-family: Arial;
text-align: center;
height: 30px;
width: 150px;
display: block;
border: 1px solid white;
color: #FFFFFF;
background: #CC0040;
text-shadow: 1px 1px #000000;
}
#product_profile_drop_down ul ul{
position: absolute;
visibility: hidden;
top: 0;
left: 260px;
}
#product_profile_drop_down ul li:hover ul{
visibility: visible;
}
#product_profile_drop_down ul li ul li:hover a{
background: #999;
color: #33FFFF;
}

Answers (1)