Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/08/2015, 12:04
superweb360
(Desactivado)
 
Fecha de Ingreso: abril-2015
Ubicación: España
Mensajes: 616
Antigüedad: 9 años, 1 mes
Puntos: 74
Respuesta: Imagen transparente de fondo html

Código HTML:
Ver original
  1. <!doctype html>
  2.     <head>
  3.         <style>          
  4.            body::after {
  5.              content: "";
  6.              background: url(http://eastsbeach.com.au/assets/Uploads/_resampled/SetWidth2000-Kiama-Events-Easts-Beach-PB.jpg);
  7.              opacity: 0.4;
  8.              top: 0;
  9.              left: 0;
  10.              bottom: 0;
  11.              right: 0;
  12.              position: absolute;
  13.              z-index: -1;  
  14.            }          
  15.         </style>
  16.     </head>
  17.     <body>
  18.        
  19.     </body>
  20. </html>