Skip to content

Instantly share code, notes, and snippets.

@gbirke
Created December 29, 2017 09: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 gbirke/1cdfeeafb7be6a638455a08d1b250f68 to your computer and use it in GitHub Desktop.
Save gbirke/1cdfeeafb7be6a638455a08d1b250f68 to your computer and use it in GitHub Desktop.
Testing SVG background images
<!DOCTYPE html>
<html>
<head>
<title>SVG-Test</title>
<style>
.foo {
background:url('Thank-you-2017-background-900.svg') no-repeat top center;
background:url('https://upload.wikimedia.org/wikipedia/commons/9/9b/Thank-you-2017-background-1200.svg') no-repeat>
background-size: cover;
height:300px;
border: solid 5px green;
}
</style>
</head>
<body>
<div class="foo">
Inhalt
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment