Created
February 26, 2010 05:47
-
-
Save saturnflyer/315466 to your computer and use it in GitHub Desktop.
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
.grid_list li | |
display: -moz-inline-box | |
-moz-box-orient: vertical | |
display: inline | |
display: inline-block | |
vertical-align: top | |
word-wrap: break-word | |
list-style: none | |
* html .grid_list li | |
display: inline | |
* + html .grid_list li | |
display: inline | |
.grid_list li > * | |
display: table | |
table-layout: fixed | |
overflow: hidden | |
/* Set your specific width via a second class and rules similar to the | |
following ones */ | |
* html .demo-ul li | |
width: 80px /* for IE 6 */ | |
.demo-ul li > * | |
width: 80px /* for all other browser */ | |
/* The floated example */ | |
.floated-ul | |
overflow: hidden | |
zoom: 1 /* zoom for IE clear fix */ | |
.floated-ul li | |
width: 80px | |
float: left | |
overflow: hidden | |
word-wrap: break-word |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment