Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > table alignment

Reply
Thread Tools

table alignment

 
 
tolobe
Guest
Posts: n/a
 
      11-03-2007
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

 
Reply With Quote
 
 
 
 
dorayme
Guest
Posts: n/a
 
      11-03-2007
In article
<. com>,
tolobe <> 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
 
Reply With Quote
 
 
 
 
Adrienne Boswell
Guest
Posts: n/a
 
      11-03-2007
Gazing into my crystal ball I observed tolobe <> writing
in news: ups.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

 
Reply With Quote
 
Martin Jay
Guest
Posts: n/a
 
      11-04-2007
On Sat, 03 Nov 2007 23:00:17 -0000, tolobe <> 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
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Vertical alignment problem (nested table cells) Ole Streicher HTML 3 04-11-2008 12:41 PM
table alignment Max HTML 5 01-05-2005 10:55 AM
Table alignment Mike T. HTML 2 08-27-2004 07:20 PM
alignment without table M HTML 1 07-03-2004 05:23 PM
table alignment prob Tomba HTML 0 11-15-2003 11:11 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57