Skip to content

Instantly share code, notes, and snippets.

@KrofDrakula
Created January 7, 2012 21:04
Show Gist options
  • Save KrofDrakula/1576044 to your computer and use it in GitHub Desktop.
Save KrofDrakula/1576044 to your computer and use it in GitHub Desktop.
Untitled
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; }
}
<!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>
{"view":"split","prefixfree":"","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment