Skip to content

Instantly share code, notes, and snippets.

@wpflames
Last active April 2, 2022 00:15
Show Gist options
  • Select an option

  • Save wpflames/f8299a70c2c0914c62bbe896f36c76c8 to your computer and use it in GitHub Desktop.

Select an option

Save wpflames/f8299a70c2c0914c62bbe896f36c76c8 to your computer and use it in GitHub Desktop.
Shadow divider
<div class="h-divider">
<div class="shadow"></div>
</div>
<style>
.h-divider {
margin: 80px auto 40px;
width: 80%;
position: relative;
}
.h-divider .shadow {
overflow: hidden;
height: 20px;
}
.h-divider .shadow:after {
content: '';
display: block;
margin: -25px auto 0;
width: 100%;
height: 25px;
border-radius: 125px/12px;
box-shadow: 0 0 8px black;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment