I'm developing a jsp file with css. It looks good in Firefox but in Internet Explorer doesn't
This is my html code
<html>
<head>
<title></title>
<style type="text/css" title="currentStyle" media="screen">
@import "/Digital/test.css";
</style>
</head>
<body>
<div style="margin-top: 320px">
<ul>
<li class="first">Home
<ul>
<li>» Products
<ul>
<li>» Computers
<ul>
<li>» Software</li>
</ul></li>
</ul></li>
</ul></li>
</ul>
</div>
</body>
</html>
test.css
body {
padding: 20px 3px 3px 20px;
}
ul {
margin-left: 0;
padding-left: 0;
display: inline;
border: none;
}
ul li {
font: bold 12pt Verdana;
margin-left: 0;
padding-left: 2px;
border: none;
list-style: none;
display: inline;
}
ul li a {
font: bold 12pt Verdana;
}
thanks