I'm using the Wicket Framework with this HTML: <?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"></meta> <meta http-equiv="cache-control" content="no-cache,no-store"></meta> <meta http-equiv="pragma" content="no-cache,no-store"></meta> <meta http-equiv="expires" content="-1"></meta> <title>WicketTest</title> <link rel="stylesheet" type="text/css" href="styles/tabStyles.css"></link> </head>
<body> <div wicket:id="tabs" class="tabpanel" >[tab panel]</div> </body> </html> If I view the source code of the page displayed by the browser, it shows: <?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"></meta> <meta http-equiv="cache-control" content="no-cache,no-store"></meta> <meta http-equiv="pragma" content="no-cache,no-store"></meta> <meta http-equiv="expires" content="-1"></meta> <title>WicketTest</title> <link rel="stylesheet" type="text/css" href="../styles/tabStyles.css"></link> </head> <body> <div wicket:id="tabs" class="tabpanel"><wicket:panel> <div wicket:id="tabs-container" class="tab-row"> ... -- View this message in context: http://old.nabble.com/Problem-with-CSS-in-HTML-tp29356352p29356426.html Sent from the Tomcat - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org