Skip to content

Instantly share code, notes, and snippets.

@rodrigoflores
Created July 5, 2012 12:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodrigoflores/3053396 to your computer and use it in GitHub Desktop.
Save rodrigoflores/3053396 to your computer and use it in GitHub Desktop.
Untitled
#outer {
width: 500px;
}
#outer:hover #text {
-webkit-transition: left linear .5s;
position: absolute;
left: 100px;
}
#text {
display: table-cell;
vertical-align: middle;
width: 100px;
position: absolute;
left: -150px;
}
#inner {
background-color: red;
width: 50px;
height: 50px;
float: left;
}
<div id="outer">
<div id="inner"></div>
<div id="text">
<p>
Ola mundo
</p>
</div>
</div>
{"view":"split-vertical","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