Skip to content

Instantly share code, notes, and snippets.

@spring-raining
Last active January 6, 2023 10:44
Show Gist options
  • Select an option

  • Save spring-raining/de935ce1a753135cd6fa89e7bdd4f969 to your computer and use it in GitHub Desktop.

Select an option

Save spring-raining/de935ce1a753135cd6fa89e7bdd4f969 to your computer and use it in GitHub Desktop.
Example of picture tag
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Example of picture tag</title>
<style>
body {
background-color: silver;
}
figure > *,
figure > picture > * {
max-width: 100%;
}
</style>
</head>
<body>
<figure>
<picture>
<source srcset="https://raw.githubusercontent.com/vivliostyle/vivliostyle.org/master/assets/vivliostyle-logo.svg" media="print">
<img src="https://raw.githubusercontent.com/vivliostyle/vivliostyle.org/master/assets/vivliostyle-logo-white.svg" alt="Vivliostyle logo">
</picture>
<figcaption aria-hidden="true">Vivliostyle logo</figcaption>
</figure>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment