html에서 테이블 형성하고

thead 랑

tfoot 에 background를 삽입하려고

css 파일에다가

thead {
    background: images/top.jpg;
}
tfoot {
    background: images/bottom.jpg;
}



라고 썻더니 적용이 안되네요;

아래 코드의 tr부분에 background해도 안먹히고
 
되려 td 부분에 background 적용하면 되더라구요 ^^;

<table width=\"728\">
 <thead>
  <tr height=\"72\">     //이부분은 안먹힘 ㅠ
   <td colspan=\"4\">     // 이부분은 background가 먹힘
   </td>
  </tr>
 </thead>


혹시 해결책 아시는분 짧은 조언좀 부탁드립니다. ㅠ