html table multiple headers

I'm trying to find out if it is possible to have multiple thead's in an html table. Maybe there's an alternative?

by Danny_Joris

HTML

<div class="fake-caption">CAPTION</div>
<div class="wrap">
<div class="abc">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</div>
<table border="1">
  <thead>
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
    <tr>
      <td>February</td>
      <td>$80</td>
    </tr>
  </tbody>
</table>
<div class="abc">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</div>
</div>

CSS

table {width: 500px;}
caption {text-align: center;}
thead {color:green}
tbody {color:blue;height:50px}
tfoot {color:red}
.abc {color: orange;}
.wrap {border-bottom: 1px solid black; border-left: 1px solid black; border-right: 1px solid black; width: 518px;}
.fake-caption {width: 520px; background-color: lightblue; color: white; border-top: 8px solid orange;}