Question

Select the choice that indicates the contents of all the table data elements that will be styled by rules with the selector table#thetable > td, for the body element given below:

<body>
  <table id="thetable">
    <tr>
      <td>Item 1</td>
      <td>Item 2</td>
    </tr>
    <tr>
      <td>Item 3</td>
      <td>Item 4</td>
    </tr>
</body>