Tema: Problema CSS
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 20/07/2009, 14:40
MadKat
 
Fecha de Ingreso: marzo-2008
Mensajes: 171
Antigüedad: 16 años, 1 mes
Puntos: 0
Problema CSS

Buenas a todos, estoy con un inconveniente que no he podido resolver, como puedo hacer para tener un DIV que tenga un fondo repetido, el cual este abajo de todo de la pagina y a su vez otro con un SWF centrado horizontalmente, en la parte superior de la pagina.

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<style type="text/css">
<!--
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #000000;
}
#TODO {
	background-image: url(img/fondos/poker+pros+wallpaper.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	height: 100%;
	width: 100%;
	position: absolute;
}
#SITE {
	height: 750px;
	width: 800px;
	position: relative;
	top: 0px;
	background-color: #000000;
}
-->
</style>
</head>

<body>
<div class="#TODO" id="TODO">

  <div class="#SITE">
  
  <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="850" height="750">
  <param name="movie" value="site.swf" />
  <param name="quality" value="high" />
  <param name="wmode" value="transparent" />
  <embed src="site.swf" width="800" height="750" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>
</object>
  
  </div>
</div>
</body>
</html>
El problema que tengo con este que puse es que el SWF no me queda CENTRADO, y ademas si cambio la resolucion no me queda "ENCUADRADO EN PANTALLA AL MAXIMO"

No se si me explico, pero bueno, cualquier cosa me explico mejor.

Un beso grande y espero puedan ayudarme

Chauchis,

Agustina.