Skip to content

Instantly share code, notes, and snippets.

@oliveryasuna
Created March 9, 2022 17:53
Show Gist options
  • Save oliveryasuna/8a0445c053d0877c5b3a9fb7076960dd to your computer and use it in GitHub Desktop.
Save oliveryasuna/8a0445c053d0877c5b3a9fb7076960dd to your computer and use it in GitHub Desktop.
CSS-only Slide Deck
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Demo styles. -->
<style>
body {
body {
display: flex;
align-items: center;
justify-content: center;
}
main {
width: 1000px;
height: 200px;
}
}
</style>
<!-- Slide Deck styles. -->
<style>
.slide-deck {
display: flex;
width: 100%;
height: 100%;
overflow-x: auto;
scroll-snap-type: x mandatory;
}
.slide-deck > * {
flex: 0 0 100%;
scroll-snap-align: start;
}
</style>
</head>
<body>
<main>
<div class="slide-deck">
<div style="background-color: red"></div>
<div style="background-color: green"></div>
<div style="background-color: blue"></div>
</div>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment