Given this code (coloring every other row's background to blue) how can you make it so it colors the full row in, not just where you got 'td'-s (in this example the Data 1 row)?
<!DOCTYPE html>
<html lang="en">
<head>
<style>
table{
border: 5px solid;
}
tr:nth-child(even) {background-color: blue;}
</style>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<table class="mytable">
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
<tr>
<td>Data 1</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
<tr>
<td>Data 5</td>
<td>Data 6</td>
<td>Data 7</td>
</tr>
</table>
</body>
</html>