http://webdevelop.com.ar/nicolecron/index.html
Yo quisiera que la sombra llegue hasta abajo del todo.
Espero puedan ayudarme porque no se como hacer :(
Gracias desde ya, un beso grande!
Agustina :)
El código css (bien simple porque no tiene nada) es el siguiente:
Código:
#cont_total { position: absolute; height: 720px; width: 780px; left: 50%; margin-left: -390px; overflow: auto; } #sombra_izq { background-image: url(../imagenes/sombra_larga_izq.png); position: absolute; height: 720px; width: 100px; }
El codigo html:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento sin título</title> <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; background-image: url(imagenes/bgweb.jpg); background-repeat: repeat; } --> </style> <link href="css/nicolecron.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="cont_total"> <div id="sombra_izq"></div> </div> </body> </html>