View Single Post
  #1 (permalink)  
Old 06-27-2007, 08:52 PM
bbq bbq is offline
Senior Member
 
Join Date: Jun 2007
Posts: 134
bbq is on a distinguished road
Problem with CSS + JSP
I'm developing a jsp file with css. It looks good in Firefox but in Internet Explorer doesn't
This is my html code
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

Code:
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
Reply With Quote
Sponsored Links