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
| /** | |
| * Responsive tables with text-shadow | |
| * Pros: No markup changes, works with normal table markup, no content duplication | |
| * Cons: Need to know max number of rows, doesn't work with all styles | |
| */ | |
| @media (max-width: 600px) { | |
| tr, td, th, thead, tbody, table { | |
| display: block; | |
| } |
NewerOlder