Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Created September 1, 2014 06:46
Show Gist options
  • Save JacobHsu/1780ac492e988fbf9650 to your computer and use it in GitHub Desktop.
Save JacobHsu/1780ac492e988fbf9650 to your computer and use it in GitHub Desktop.
#CSS Bordering on insanity // source http://jsbin.com/xohujofaxovo/1
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
<style id="jsbin-css">
/*Add your CSS below!*/
td{
height:50px;
border:1px dashed blue;
}
table{
border:1px solid black;
}
</style>
</head>
<body>
<table>
<thead>
<th colspan="3">Nine Blocks!</th>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<script id="jsbin-source-css" type="text/css">/*Add your CSS below!*/
td{
height:50px;
border:1px dashed blue;
}
table{
border:1px solid black;
}
</script>
</body>
</html>
/*Add your CSS below!*/
td{
height:50px;
border:1px dashed blue;
}
table{
border:1px solid black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment