Created
September 1, 2014 06:46
-
-
Save JacobHsu/1780ac492e988fbf9650 to your computer and use it in GitHub Desktop.
#CSS Bordering on insanity // source http://jsbin.com/xohujofaxovo/1
This file contains 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> | |
<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> |
This file contains 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
/*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