Skip to content

Instantly share code, notes, and snippets.

@sofish
Created January 25, 2011 09:21
Show Gist options
  • Select an option

  • Save sofish/794702 to your computer and use it in GitHub Desktop.

Select an option

Save sofish/794702 to your computer and use it in GitHub Desktop.
inline.html
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Sample</title>
<style>
*{margin:0;padding:0;}
html{-webkit-text-size-adjust:none;}
#test{font:0 tahoma;list-style:none;display:block;text-align:center;}
@media screen and (-webkit-min-device-pixel-ratio:0){ #test{font-size:1px;} }
#test li{font-size:13px;vertical-align:top;display:inline-block;*display:inline;*zoom:1;width:150px;height:150px;background:#ddd;border:1px solid #f30;}
#test p{margin-bottom:10px;}
.button{display:block;width:60px;height:25px;line-height:25px;text-align:center;background:#f30;color:#fff;white-space:nowrap;}
</style>
</head>
<body>
<ul id="test">
<li><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit</p> <a class="button">button</a></li>
<li><p>sed do eiusmod tempor incididunt ut</p> <a class="button">button</a></li>
<li><p>fugiat nulla pariatur. Excepteur sint occaecat cupidatat non</p></p> <a class="button">button</a></li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment