CSS:
.num{
z-index:8;
background-color:#ffd200 ;
width: 180px;
height: 47px;
color: #ffd200;
border:#ffd200 double 6px;
border-radius: 20px;
}
HTML:
<div id="ll">
<table id="num">
<tr >
<td class="num"></td>
<td class="num"> </td>
</tr>
</table>
With the above styling and HTML structure in place, what could be causing the border to not appear on the page?