Skip to content

Instantly share code, notes, and snippets.

@exarcheia-web
Created December 17, 2013 19:26
Show Gist options
  • Save exarcheia-web/8011070 to your computer and use it in GitHub Desktop.
Save exarcheia-web/8011070 to your computer and use it in GitHub Desktop.
Position relative / absolute demo
/* 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;
}
<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>
// alert('Hello world!');
{"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