Last active
March 3, 2018 14:01
-
-
Save lonekorean/34d66ab51bd2e2861b3e5cca3a42cd49 to your computer and use it in GitHub Desktop.
CSS properties that border is shorthand for
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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