helo all,
i am traing make a css menu,but it good in IE and not work in Firfox,what is going wrong in my code ,plese help me.
sidhu>G
#ul{
width:100px;
padding:5px;
background-color:#000000;
text-align:center;
}
#ul li{
display:block;
}
#ul li a{
float:left;
padding:10px;
width:100%;
background-color:#FFFFFF;
color:#000000;
text-decoration:none;
}
#ul li a:hover{
width:100px;
background-color:#FF0000;
text-decoration:none;
}
</style>
</head>
<body>
<ul id=“ul”>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="products.html">Products</a></li>
</ul>