Created
November 8, 2018 17:12
-
-
Save rokj/45be70e88655ee37366e3482c2dad7ab to your computer and use it in GitHub Desktop.
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
p { | |
color: red; | |
background-color: yellow; | |
/* padding: 4px; */ | |
border: 6px dashed blue; | |
font-size: 10px; | |
} | |
#moj_posebni_element { | |
background-color: green; | |
width: 150px; | |
margin: 0 auto; | |
padding: 10px 15px 3px 1px; | |
} | |
.special_orange { | |
background-color: orange; | |
} | |
#prva_slika { | |
width: 200px; | |
height: 150px; | |
border: 2px dashed yellow; | |
background-color: blue; | |
} | |
#prva_slika:hover { | |
border: 2px solid red; | |
} | |
td:nth-child(2n+1) { | |
background-color: yellow; | |
} | |
#fiksni { | |
position: fixed; | |
background-color: yellow; | |
width: 200px; | |
height: 50px; | |
top: 200px; | |
left: 230px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment