Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/01/2012, 11:09
oskar5
 
Fecha de Ingreso: abril-2008
Mensajes: 141
Antigüedad: 16 años
Puntos: 1
mostrar etiqueta DIV

hola todos por favor una ayuda

tengo este codigo pero quiero q la etiqueta se muestre hacia arriba es decir q aparezca hacia arriba no hacia abajo .. COMO LO HAGO?? muchas gracias porfavor muestremen con codigo como podria hacerlo.

Código:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript">


</script>
<style type="text/css">
#apDiv1 {
	position:relative;
	width:240px;
	height:33px;
	z-index:1;
	transition:height 2s;
	-moz-transition:height 2s;
	-webkit-transition:height 2s;
	-o-transition:height 2s;

	background-image: url(pesta%C3%B1ainferior.png);
	}
#apDiv1:hover{
		height:337px;
		top:auto;
	}


</style>
</head>
<body>

<div id="apDiv1"></div>


</body>
</html>