Created
January 25, 2011 09:21
-
-
Save sofish/794702 to your computer and use it in GitHub Desktop.
inline.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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