Created
June 20, 2018 16:54
-
-
Save goldhand/48682c369f2ecf2427398d6ba30779d9 to your computer and use it in GitHub Desktop.
This file contains 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
* { | |
border: solid lightgray 1px !important; | |
} | |
/* blocks use solid border */ | |
section, aside, nav { | |
border: solid green 1px !important; | |
} | |
div { | |
border: solid blue 1px !important; | |
} | |
table { | |
border: solid red 1px !important; | |
} | |
td, th { | |
border: solid pink 1px !important; | |
} | |
ul, dl, ol { | |
border: solid purple 1px !important; | |
} | |
li { | |
border: solid magenta 1px !important; | |
} | |
/* inline use dashed border */ | |
span { | |
border: dashed cyan 1px !important; | |
} | |
a { | |
border: dashed orange 1px !important; | |
} | |
button { | |
border: dashed cornflowerblue 1px !important; | |
} | |
b, strong { | |
border: dashed coral 1px !important; | |
} | |
i, em { | |
border: dashed lavender 1px !important; | |
} | |
/* text use dotted border */ | |
h1, h2, h3, h4, h5, h6 { | |
border: dotted red 1px !important; | |
} | |
p { | |
border: dotted blue 1px !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment