I currently have a table that looks like this: http://s8.postimg.org/gybzti0rn/Screen_Shot_201 5_02_27_at_1_30 _23_PM.png
I want to move the description of the boat up to the top of the image. I tried using valign="top", but this moved the description to the very top of the table, where the boat name is.
Here is my HTML:
Thanks in advance for the help!
I want to move the description of the boat up to the top of the image. I tried using valign="top", but this moved the description to the very top of the table, where the boat name is.
Here is my HTML:
Code:
<table border ="1">
<tr>
<th> Boat Name </th>
<th rowspan="2">Description</th>
</tr>
<tr>
<td><img src="boatimage.png"></td>
</tr>
</table>
Comment