Created
May 23, 2022 20:30
-
-
Save vladkrasovsky/1cbb5cd6bcb8264c6a09a93b587368cc to your computer and use it in GitHub Desktop.
CSS declaration order
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
.declaration-order { | |
/* Positioning */ | |
position: absolute; | |
top: 0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
z-index: 100; | |
/* Box-model */ | |
display: block; | |
float: right; | |
width: 100px; | |
height: 100px; | |
/* Typography */ | |
font: normal 13px "Helvetica Neue", sans-serif; | |
line-height: 1.5; | |
color: #333; | |
text-align: center; | |
/* Visual */ | |
background-color: #f5f5f5; | |
border: 1px solid #e5e5e5; | |
border-radius: 3px; | |
/* Misc */ | |
opacity: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment