Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>Decoloración en CSS a través del modo de mezcla</title> </head> <body> <style> .photo { --source: url(https://tutorialesenlinea.futbolgratis.org/s/posts/2019-07/1562867703_decoloracion-en-css-a-traves-del-modo-de-mezcla_-tutoriales_en_linea.webp); position: relative; width: 768px; height: 370px; margin: auto; background-image: var(--source); background-repeat: no-repeat; background-size: 100%; } .photo::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-image: var(--source); background-repeat: no-repeat; background-size: 100%; filter: grayscale(1) contrast(1.2); z-index: 0; mix-blend-mode: lighten; background-blend-mode: hard-light; background-color: #c2c2c2; } </style> <h1 align="center" style="color:black; font-family: Monaco, 'Courier New', monospace; size:12px; text-transform:capitalize; text-decoration: none;">Decoloración en CSS a través del modo de mezcla</h1> <div class="photo"></div> </body> </html>