Skip to content

Instantly share code, notes, and snippets.

@mrtrimble
mrtrimble / skeletons.css
Created December 21, 2020 13:35
Simple way to make skeletons in CSS and JavaScript
.skeleton {
position: relative;
box-sizing: border-box;
display: -webkit-box;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-flow: column;
width: 100%;
}