Created
June 4, 2021 14:24
-
-
Save brettkelly/7bed358ef4510137d492a80c2288dc1e to your computer and use it in GitHub Desktop.
Add quotation mark image to testimonial
This file contains 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
selector::before { | |
content:""; | |
background-image:url('foo.svg'); | |
position:absolute; | |
top:0; | |
left:2; | |
opacity:0.3; | |
} | |
selector::after { | |
content:""; | |
background-image:url('foo.svg'); | |
position:absolute; | |
bottom:0; | |
right:2; | |
opacity:0.3; | |
transform: rotate(180deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment