Hola, soy nuevo en esto del CSS y tengo un problema con los fondos, vamos, que no consigo que se vean.
Este es mi código CSS:
Código:
#cabecera {
background: transparent url(images/bg_menu.jpg) no-repeat fixed;
margin: 0px;
position: absolute;
top: 0px;
left: 200px;
}
#menu {
background: url(images/bg_menu_02 no-repeat top left;
margin-top: 107px;
margin-left: 200px;
position: absolute;
top: 0px;
left: 0px;
}
y este el código de la página web JSP:
Código HTML:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Salud Digital</title>
<script type="text/javascript"></script>
<style type="text/css" title="currentStyle" media="screen">
@import "estructuraWeb.css";
</style>
</head>
<body>
<div id="cabecera">
<%@ include file="/html/cabecera.html" %>
</div>
<div id="menu">
<%@ include file="/html/menu.html" %>
</div>
<div id="mainFrame">
<%@ include file="/jsp/ultimasNoticias.jsp" %>
</div>
</html>
Gracias y un saludo!