Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/05/2012, 09:27
Avatar de djaevi
djaevi
 
Fecha de Ingreso: marzo-2007
Ubicación: Moreno, Buenos Aires
Mensajes: 400
Antigüedad: 17 años, 1 mes
Puntos: 47
Respuesta: Centrar texto verticalmente con alto fijo maximo

Prueba :
Código HTML:
Ver original
  1.     #contenedor {
  2.         height:80px;
  3.         background-color:#993333;
  4.         width:300px;
  5.         position:absolute;
  6.     }
  7.    
  8.     #mensaje {
  9.         position:relative;
  10.         height: 20px;
  11.         top:50%;
  12.         margin-top:-10px;
  13.         background-color:#006699;
  14.         left:20px;
  15.         width:280px;
  16.     }
  17. <div id="contenedor">
  18.     <div id="mensaje">Hola</div>
  19. </div>

Saludos