Skip to content

Instantly share code, notes, and snippets.

@peterpme
Created February 25, 2014 16:40
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 peterpme/9212671 to your computer and use it in GitHub Desktop.
Save peterpme/9212671 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
</ul>
// ----
// Sass (v3.3.0.rc.5)
// Compass (v1.0.0.alpha.18)
// ----
li{
position:relative;
width:100px;
height:100px;
list-style:none;
background:black;
margin:20px;
text-indent:-9999px;
& > span {
position:absolute;
background:blue;
width:20px;
height:20px;
top:0;
right:0;
left:0;
bottom:0;
margin:auto;
}
}
li {
position: relative;
width: 100px;
height: 100px;
list-style: none;
background: black;
margin: 20px;
text-indent: -9999px;
}
li > span {
position: absolute;
background: blue;
width: 20px;
height: 20px;
top: 0;
right: 0;
left: 0;
bottom: 0;
margin: auto;
}
<ul>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
<li><span>Box1</span></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment