|
Posted by Martin Jay on 11/04/07 02:17
On Sat, 03 Nov 2007 23:00:17 -0000, tolobe <tolobe@gmail.com> wrote:
>Hi there, Got a question about a site I'm building. The issue is with
>text in a <td> which I'm trying to keep aligned with text in another
><td>. See below: http://art.nmu.edu/student_web/tlb/TLB/resume.html
>I don't know what's wrong, can anyone enlighten me?
You need to define a row in the table for each entry. For example:
<tr>
<td>2003-2007</td>
<td>Education, blah, blah, blah</td>
</tr>
<tr>
<td>2007</td>
<td>Work experience, blah, blah, blah</td>
</tr>
You can't rely on using lots of <br>s to vertically align the
information.
--
Martin Jay
[Back to original message]
|