23/08/2011, 11:42
|
|
capas y mas capas dreamweaver que tal amigos tengo problemas con las divs pa cuando hago una div pa o fija para que sea el contenedor, todo va bien pero cuando intento inserta una div dentro de el contenedor no puedo no me deja se posiciona solo a los lados.
este es mi codigo: html
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<LINK REL="SHORTCUT ICON" HREF="favicon.png">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Victor Alvarado Photographer</title>
<!--mis estilos-->
<link href="estilos.css" rel="stylesheet" type="text/css">
<!-- estilos css-->
<style type="text/css">
#contenido {
background-image:url(imagenes/intro.png);
position:relative;
left:50%;
width:800px;
height:600;
margin-left:-400px;
z-index:1;
top: 0;
}
body {
background-image: url(imagenes/fondo.GIF);
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
</style>
</head>
<body>
<div id="contenedor">
<div id="contenido"></div>
<div id="boton1"> <img src="imagenes/blog.png"> </div>
<div id="boton2"> <img src="imagenes/blog.png"></div>
</div>
</body>
</html> el css
@charset "utf-8";
/* estilos */
#boton1{
width:1px;
height:20px;
position:absolute;
left: 445px;
top: 600px;
}
#boton2{
width:60px;
height:20px;
position:absolute;
left: 70%;
top: 600px;
}
__________________________________________________ _______________
gracias hasta pronto...
Última edición por polonanni; 23/08/2011 a las 11:43
Razón: problema comun capas dreamweaver
|