Ver Mensaje Individual
  #9 (permalink)  
Antiguo 06/11/2012, 13:41
alvarols
 
Fecha de Ingreso: diciembre-2008
Mensajes: 738
Antigüedad: 16 años, 1 mes
Puntos: 15
Respuesta: ¿Cómo puedo colocar texto dentro de una imagen?

Código CSS:
Ver original
  1. .thumbnail2{
  2.     position:relative;
  3.     width:100%;
  4.     margin:0 auto;
  5. }
  6.  
  7. .thumbnail2 img{
  8.     width:100%;
  9. }
  10.  
  11. .thumbnail2 h1{
  12.     display:block;
  13.     position:relative;
  14.     top:-120px;
  15.     left: 0;
  16.     padding-left:5px;
  17.         background: rgb(0, 0, 0);
  18.     background: rgba(0, 0, 0, 0.7);
  19.        
  20.  
  21. }
  22.  
  23. .thumbnail2 h1 span{
  24.     font: bold 40px;
  25.     letter-spacing: -1px;
  26.     line-height:54px;
  27. }
  28.  
  29.  
  30. .thumbnail2 h1 a{
  31.     color:#FFF;
  32.  
  33.  
  34. }