table alignment

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?
I'm new to this group, so if I'm posting to the wrong place, please
lemme know where to go.

thanks,
TL
tolobe [ So, 04 November 2007 00:00 ] [ ID #1861849 ]

Re: table alignment

In article
<1194130817.791317.291290 [at] 19g2000hsx.googlegroups.com>,
tolobe <tolobe [at] 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?
> I'm new to this group, so if I'm posting to the wrong place, please
> lemme know where to go.
>
> thanks,
> TL

er... if you want to use a table and make it count here for a
real purpose, namely to give information about the years on the
left, then make a table but use rows:

<tr><td>2003-2007</td><td>did this...</td></tr>
<tr><td>2007</td><td>did that...</td></tr>
<tr><td>2004-2007</td><td>did another thing...</td></tr>

But really, perhaps you need to look at a tutorial:

http://www.htmldog.com/

--
dorayme
dorayme [ So, 04 November 2007 00:42 ] [ ID #1862245 ]

Re: table alignment

Gazing into my crystal ball I observed tolobe <tolobe [at] gmail.com> writing
in news:1194130817.791317.291290 [at] 19g2000hsx.googlegroups.com:

> 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?
> I'm new to this group, so if I'm posting to the wrong place, please
> lemme know where to go.
>
> thanks,
> TL
>
>

What in &Deity;'s name created this? Did you do this by yourself?

1. Get a plain text editor with syntax highlighting.
2. Read some HTML tutorials
3. Read some CSS tutorials (take all the presentational markup out, then
play with CSS until it looks like you want)
4. Stop depending on <br> - use CSS to align the content in the td
element to top.
5. Use a DocType

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share
Adrienne Boswell [ So, 04 November 2007 00:45 ] [ ID #1862247 ]

Re: table alignment

On Sat, 03 Nov 2007 23:00:17 -0000, tolobe <tolobe [at] 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
Martin Jay [ So, 04 November 2007 03:17 ] [ ID #1862268 ]
Miscellaneous » alt.html » table alignment

Vorheriges Thema: alternating text/image rows
Nächstes Thema: Scrolling tables ... almost there