I am trying to build a Sudoku style board with CSS but am having some trouble getting a few of the squares to align. What am I missing ??
HTML
<div class="middle-box">
<div class="sudoku">
<div class="square">
<input class="tile normal edge-left edge-top">
<input class="tile normal edge-top">
<input class="tile normal edge-top">
<input class="tile normal edge-left">
<input class="tile normal">
<input class="tile normal">
<input class="tile normal edge-left">
<input class="tile normal">
<input class="tile normal">
</div>
CSS:
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: #ecf0f1;
background-size: cover;
font-family: "Slabo 27px", serif; }
a {
text-decoration: none;
transition: all 0.3s; }
.sudoku {
width: 460px;
height: 460px;
background: #2c3e50;
border: 20px solid #2c3e50;
position: absolute;
left: 0;
top: 0; }
....