Created
January 7, 2012 21:04
-
-
Save KrofDrakula/1576044 to your computer and use it in GitHub Desktop.
Untitled
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
| body { font-size: 120%; } | |
| td, th { font: inherit; } | |
| td { padding: 0.2em 0.5em; border: 1px solid black; } | |
| @media screen and (max-width: 240px) { | |
| table, tbody, tr, td { display: block; } | |
| tr:nth-child(2n) { background: #ccc; } | |
| } |
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"/> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"/> | |
| <title>Breakable tables</title> | |
| <style> | |
| td { padding: 0.2em 0.5em; border: 1px solid black; } | |
| @media screen and (max-width: 640px) { | |
| table, tbody, tr, td { display: block; } | |
| tr:nth-child(2n) { background: #ccc; } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Breakable tables</h1> | |
| <table> | |
| <thead> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| <tr> | |
| <td>Lorem ipsum Dolor sit amet</td> | |
| <td>Dolor sit amet</td> | |
| <td>Non adepiscum sol losus</td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </body> | |
| </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
| {"view":"split","prefixfree":"","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment