Created
December 17, 2013 19:26
-
-
Save exarcheia-web/8011070 to your computer and use it in GitHub Desktop.
Position relative / absolute demo
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
| /* Position relative / absolute demo */ | |
| .box { | |
| width: 150px; | |
| height: 150px; | |
| background: hotpink; | |
| display: inline-block; | |
| margin-right: 5px; | |
| position: relative; | |
| } | |
| .test { | |
| background: darkslategray; | |
| left: 0; | |
| } | |
| .small-box { | |
| width: 75px; | |
| height: 75px; | |
| background: crimson; | |
| position: absolute; | |
| bottom: -5px; | |
| right: -5px; | |
| } | |
| .section-main { | |
| position: absolute; | |
| bottom: 0; | |
| right: 0; | |
| } |
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
| <section class="section-main"> | |
| <div class="box test"> | |
| <div class="small-box"></div> | |
| </div> | |
| <div class="box"> | |
| <div class="small-box"></div> | |
| </div> | |
| <div class="box"> | |
| <div class="small-box"></div> | |
| </div> | |
| </section> |
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
| // alert('Hello world!'); |
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","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment