Created
April 13, 2012 14:56
-
-
Save MichaelArestad/2377439 to your computer and use it in GitHub Desktop.
The glass is half something
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
/* The glass is half something */ | |
.glass { | |
position: relative; | |
border: 1px solid grey; | |
width: 200px; | |
height: 380px; | |
margin: 50px auto; | |
} | |
.glass > .water { | |
position: absolute; | |
top: 50%; | |
bottom: 0; | |
background: blue; | |
width: 100%; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<div class="glass"> | |
<div class="water"> | |
</div> | |
</div> |
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
{"view":"split-vertical","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment