Skip to content

Instantly share code, notes, and snippets.

@gtwalford
Created January 3, 2019 00:08
Show Gist options
  • Save gtwalford/b32a1a7d6a137e49eb0b964038e67e58 to your computer and use it in GitHub Desktop.
Save gtwalford/b32a1a7d6a137e49eb0b964038e67e58 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/jupepayohe
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
.wrapper__title {
border: 1px solid black;
border-radius: 5px 5px 0 0;
padding: 5px;
}
.wrapper__content {
border-left: 1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
border-radius: 0 0 5px 5px;
padding: 5px;
}
.content {
padding: 5px;
}
.content td {
border-bottom: 1px solid black;
}
.content tr:last-child td {
border-bottom: none;
}
</style>
</head>
<body>
<table border="0" cellPadding="0" cellSpacing="0" class='wrapper'>
<tbody>
<tr>
<td class='wrapper__title'>Title</td>
</tr>
<tr>
<td class='wrapper__content'>
<table class='content' border="0" cellPadding="0" cellSpacing="0">
<tbody>
<tr>
<td>
<p>Some Content</p>
</td>
</tr>
<tr>
<td>
<p>More Content</p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<script id="jsbin-source-css" type="text/css">.wrapper__title {
border: 1px solid black;
border-radius: 5px 5px 0 0;
padding: 5px;
}
.wrapper__content {
border-left: 1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
border-radius: 0 0 5px 5px;
padding: 5px;
}
.content {
padding: 5px;
}
.content td {
border-bottom: 1px solid black;
}
.content tr:last-child td {
border-bottom: none;
}
</script>
</body>
</html>
.wrapper__title {
border: 1px solid black;
border-radius: 5px 5px 0 0;
padding: 5px;
}
.wrapper__content {
border-left: 1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
border-radius: 0 0 5px 5px;
padding: 5px;
}
.content {
padding: 5px;
}
.content td {
border-bottom: 1px solid black;
}
.content tr:last-child td {
border-bottom: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment