Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15-02-2007, 18:03:41
Istyar Istyar is offline
Gran Participación en el Foro
 
Registrado: sep 2004
Posts: 286
Istyar Valoración +2
Predeterminado

Lo más parecido que te puede ofrecer es algo así como:

Código:
<div style='width: 100px; height: 100px; overflow-x: hidden; overflow-y: hidden;'>
  <div id='contenido' style='width: 300px; height: 300px; margin: 0px 0px 0px 0px;'>
    A
 B
 C
 D
 E
 F
 G
 H
 
  </div>
</div>
<input value='^' type='button' 
  onclick="getElementById('contenido').style.marginTop = (parseInt(getElementById('contenido').style.marginTop) - 10) + 'px';">
<input value='v' type='button' 
  onclick="getElementById('contenido').style.marginTop = (parseInt(getElementById('contenido').style.marginTop) + 10) + 'px';">
Responder Con Cita