Ignore border-spacing for tables with zero cells

This commit is contained in:
Matt Brubeck 2015-04-27 13:36:10 -07:00
parent 32b9c0962b
commit cad5d8b670
5 changed files with 50 additions and 8 deletions

View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<style>
body {
background: yellow;
}
table {
border-spacing: 100px;
background: darkblue;
}
</style>
</head>
<body>
<table></table>
</body>
</html>