Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<link rel="match" href="background-color-animation-with-table1-ref.html">
<style>
table {
width: 160px;
}
.firstcolumn {
animation: bgcolor 100s;
}
@keyframes bgcolor {
0% { background-color: rgba(0, 200, 0, 0); }
100% { background-color: rgba(200, 0, 0, 0); }
}
</style>
<table>
<colgroup>
<col class="firstcolumn">
</colgroup>
<tr><td>1</td></tr>
<tr><td>2</td></tr>
</table>