A Pen by Sebastian Rothbucher on CodePen.
Created
February 3, 2019 16:48
-
-
Save sebastianrothbucher/adda5adab065577cf3614939520dd88a to your computer and use it in GitHub Desktop.
waves-font-background
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="back"> | |
whatever | |
<div id="fore"></div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#back { | |
font-size: 120px; | |
font-weight: bold; | |
padding: 10px; | |
font-family: sans-serif; | |
position: relative; | |
display: inline-block; | |
color: black; | |
background-color: white; | |
} | |
#fore { | |
position: absolute; | |
top: 0; | |
bottom: 0; | |
left: 0; | |
right: 0; | |
background: url('https://images.unsplash.com/photo-1502209944943-85c1d6146367?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=800&q=60'); | |
background-position-x: -250px; | |
mix-blend-mode: lighten; /* !!! */ | |
opacity: 0.9; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment