Last active
December 16, 2020 12:59
-
-
Save BolajiOlajide/755390726d4e1d11622a1bb2fed66ac1 to your computer and use it in GitHub Desktop.
CSS ordering for LMap --> https://css-tricks.com/poll-results-how-do-you-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; | |
bottom: 0; | |
left: 0; | |
/* Display */ | |
display: inline-block; | |
overflow: hidden; | |
box-sizing: border-box; | |
/* Background */ | |
background-image: url(); | |
background-size: contain; | |
background-color: #000; | |
/* Box-Model */ | |
width: 100px; | |
height: 100px; | |
margin: 3rem; | |
padding: 1rem; | |
border: 3px solid red; | |
content: ''; | |
/* Text */ | |
font-family: sans-serif; | |
font-size: 16px; | |
line-height: 1.4; | |
text-align: right; | |
/* Other */ | |
cursor: pointer; | |
color: #fff; | |
overflow: scroll; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment