Skip to content

Instantly share code, notes, and snippets.

@stilsjp
Created October 5, 2012 14:59
Show Gist options
  • Save stilsjp/3840321 to your computer and use it in GitHub Desktop.
Save stilsjp/3840321 to your computer and use it in GitHub Desktop.
Untitled
.block {
height:100px;
width:100px;
background:red;
position: relative;
transition: width 1s, height 1s;
min-height:100px;
min-width: 100px;
}
.block:hover {
height:50px;
width:50px;
}
.block::after {
position:absolute;
height: inherit;
width: inherit;
left:100px;
top:0;
content:'';
background: blue;
}
<div class="block"></div>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment