I am trying to design a chess board with css3, but it seems like my selectors are wrong. Here is my JsFiddle
So why can't I see the designed test blue and red borders around lines and cells ?
html
<body>
My chess board
<table class="chess_board">
<tr class="chess_line">
<td class="chess_cell black_cell white_piece"><span>♔</span></td>
<td class="chess_cell white_cell white_piece"><span>♕</span></td>
<td class="chess_cell black_cell white_piece"><span>♖</span></td>
<td class="chess_cell white_cell white_piece"><span>♗</span> </td>
</tr>
<tr class="chess_line">
<td class="chess_cell white_cell"><span>♜</span></td>
<td class="chess_cell black_cell"><span>♝</span></td>
<td class="chess_cell white_cell"><span>♞</span></td>
<td class="chess_cell black_cell"><span>♟</span></td>
</tr>
</table>
My another chess board ... to be drawn !
</body>
css
table.chess_board > tr.chess_line {
background-color: blue;
}
table.chess_board > tr.chess_line > td.chess_cell {
border: 2px solid red;
/*
font-family: serif;
font-size: 2.3em;
width: 1.0em;
height: 1.0em;
text-align: center;
*/
}
table.chess_board > tr.chess_line > td.chess_cell > span {
position: relative;
bottom: 0.1em;
}
table.chess_board > tr.chess_line > td.white_cell {
background-color: rgb(217, 245, 2);
}
table.chess_board > tr.chess_line > td.black_cell {
background-color: rgb(89, 34, 21);
}
table.chess_board > tr.chess_line > td.white_piece {
color: rgb(179, 48, 63);
}
Can anyone help ?
This is because browser automatically puts
<tbody
> element betweentable
andtr
while creating the DOM from HTML.Check DOM structure in Firebug (or similar tool)
You can either remove
>
operator like:http://jsfiddle.net/nxvse1hd/8/
or add
tbody >
like:http://jsfiddle.net/nxvse1hd/9/