Created
May 25, 2016 17:16
-
-
Save hnxvc/554830a4db1b24452977c0659e78552b to your computer and use it in GitHub Desktop.
order your CSS properties
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
.selector { | |
/* Positioning */ | |
position: absolute; | |
z-index: 10; | |
top: 0; | |
right: 0; | |
/* Display & Box Model */ | |
display: inline-block; | |
overflow: hidden; | |
box-sizing: border-box; | |
width: 100px; | |
height: 100px; | |
padding: 10px; | |
border: 10px solid #333; | |
margin: 10px; | |
/* Color */ | |
background: #000; | |
color: #fff | |
/* Text */ | |
font-family: sans-serif; | |
font-size: 16px; | |
line-height: 1.4; | |
text-align: right; | |
/* Other */ | |
cursor: pointer; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment