Skip to content

Instantly share code, notes, and snippets.

@brettkelly
Created June 4, 2021 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brettkelly/7bed358ef4510137d492a80c2288dc1e to your computer and use it in GitHub Desktop.
Save brettkelly/7bed358ef4510137d492a80c2288dc1e to your computer and use it in GitHub Desktop.
Add quotation mark image to testimonial
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