Sha256: 70f1e85574b93711240b54c255ec0cf3c4bc4f80167c61ffec440ca369a785bc
Contents?: true
Size: 463 Bytes
Versions: 42
Compression:
Stored size: 463 Bytes
Contents
// Flex table is a module for creating dynamically resizable elements that // always sit on the same horizontal line (e.g., they never wrap). Using // tables means it's cross browser friendly. .flex-table { display: table; } // Place this on every "cell" .flex-table-item { display: table-cell; width: 1%; white-space: nowrap; vertical-align: middle; } // Place this on the largest or most important "cell" .flex-table-item-primary { width: 99%; }
Version data entries
42 entries across 42 versions & 1 rubygems