Created
March 19, 2012 15:23
-
-
Save maxhoffmann/2116104 to your computer and use it in GitHub Desktop.
opacity Beispiel
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
/* opacity Beispiel */ | |
div { | |
width: 300px; | |
height: 300px; | |
position: absolute; | |
} | |
#eins { background: red; } | |
#zwei { | |
background: blue; | |
top: 50px; | |
left: 50px; | |
opacity: 0.6; | |
} | |
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
<div id="eins">Box 1</div> | |
<div id="zwei">Box 2</div> |
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
{"view":"separate","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment