How do you change where a table is placed, or the size of a table? How does the website know to place the table below “search the table” even though no instructions about the location were given in https://www.codecademy.com/courses/learn-html/lessons/tables/exercises/table-data?action=resume_content_item ?
The browser reads our code from left to right, then from up to down. If you want to move the table then you could place the table element in a specific point in your html and you can change the size of the table using CSS which you will get to in later lessons. Here’s the solution that exercise.
<tr>
<td>Adam's Greenworks</td>
<td>14</td>
<td>Package Items</td>
</tr>
2 Likes