Skip to content

Instantly share code, notes, and snippets.

@kasper93

kasper93/.html Secret

Created April 27, 2018 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasper93/c27bb264d409128d3fd1a5c683fecf0d to your computer and use it in GitHub Desktop.
Save kasper93/c27bb264d409128d3fd1a5c683fecf0d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
ul {
display: flex;
flex-wrap: wrap;
height: 100%;
width: 300px;
}
li {
display: flex;
padding: 0.5em 1.5em;
}
table {
width: 100%;
table-layout: fixed;
}
table td {
background-color: #CCCCCC;
}
</style>
</head>
<body>
<ul>
<li>
<table>
<tbody>
<tr>
<td>first</td>
</tr>
</tbody>
</table>
</li>
<li>
<table>
<tbody>
<tr>
<td>second</td>
</tr>
</tbody>
</table>
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment