Skip to content

Instantly share code, notes, and snippets.

@lonekorean
Last active March 3, 2018 14:01
Show Gist options
  • Save lonekorean/34d66ab51bd2e2861b3e5cca3a42cd49 to your computer and use it in GitHub Desktop.
Save lonekorean/34d66ab51bd2e2861b3e5cca3a42cd49 to your computer and use it in GitHub Desktop.
CSS properties that border is shorthand for
.shorthand {
border: 1px solid blue;
}
.expanded {
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: blue;
border-right-color: blue;
border-bottom-color: blue;
border-left-color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment