SVG in CSS with PNG fallback

Size
1,811 Kb
Views
16,192

How do I make an svg in css with png fallback?

What is a svg in css with png fallback? How do you make a svg in css with png fallback? This script and codes were developed by Martin Michálek on 29 September 2022, Thursday.

SVG in CSS with PNG fallback Previews

SVG in CSS with PNG fallback - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>SVG in CSS with PNG fallback</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <h1>SVG in CSS with PNG fallback</h1>
<p class="icon icon-twitter"></p>
<p class="icon icon-facebook"></p> <script src="js/index.js"></script>
</body>
</html>

SVG in CSS with PNG fallback - Script Codes CSS Codes

.icon { width: 200px; height: 200px; display: inline-block; margin: 0 10px 10px 0; background-repeat: none; background-position: center center; background-size: contain;
}
.icon-twitter { background-image: url('http://www.vzhurudolu.cz/data/assets/twitter.svg');
}
.no-svg .icon-twitter { background-image: url('http://www.vzhurudolu.cz/data/assets/twitter.png');
}
.icon-facebook { background-image: url('http://www.vzhurudolu.cz/data/assets/facebook.svg');
}
.no-svg .icon-facebook { background-image: url('http://www.vzhurudolu.cz/data/assets/facebook.png');
}

SVG in CSS with PNG fallback - Script Codes JS Codes

if (!document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#Image", "1.1")) { document.documentElement.className = "no-svg";
}
SVG in CSS with PNG fallback - Script Codes
SVG in CSS with PNG fallback - Script Codes
Home Page Home
Developer Martin Michálek
Username machal
Uploaded September 29, 2022
Rating 3
Size 1,811 Kb
Views 16,192
Do you need developer help for SVG in CSS with PNG fallback?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Martin Michálek (machal) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!