muchas gracias por sus repsuestas, las estare esperando ansiosamente
|
|
#1 (permalink) |
![]() Fecha de Ingreso: enero-2005
Mensajes: 13
|
div sobre otro div
muchas gracias por sus repsuestas, las estare esperando ansiosamente Última edición por tobyº; 21-ene-2005 a las 14:40. |
|
|
|
|
|
#2 (permalink) |
|
Colaborador
![]() ![]() ![]() Fecha de Ingreso: marzo-2004
Ubicación: En alguna otra parte
Mensajes: 4.393
|
Hola
Aquí te dejo un ejemplito:
Código:
Felicidad<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">
<head>
<style type="text/css">
.primero {
position: absolute;
width: 300px;
height: 300px;
background-color: #ff0000;
}
.segundo {
position: relative;
left: 10px;
top: 10px;
width: 300px;
height: 300px;
background-color: #00ff00;
}
</style>
<title>cualquier cosa</title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=iso-8859-1" />
</head>
<body>
<div class="primero"><div class="segundo"> </div></div>
</body>
</html>
__________________
De vuelta por aquí, más o menos ¡ hey, hou, hou, hey ! |
|
|
|