HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
Column width
Post new topic   Reply to topic    HTML Help Forum Index -> HTML Table
View previous topic :: View next topic  
Author Message
Kroko13



Joined: 19 Nov 2007
Posts: 1

PostPosted: Mon Nov 19, 2007 5:16 am     Column width Reply with quote

I have problems width column widths. I want first column to have width at least 100px and stretch if needed. Second colmn should get remaining space.

Code:

<table border="1" width="100%">
  <tr>
    <td width="100px">
      Name
    </td>
    <td>
      Value
    </td>
  </tr>
  <tr>
    <td>
      First name
    </td>
    <td>
      John
    </td>
  </tr>
</table>


This works fine. However if text in first column is wider then it gets wierd width.

Code:

<table border="1" width="100%">
  <tr>
    <td width="100px">
      Name
    </td>
    <td>
      Value
    </td>
  </tr>
  <tr>
    <td>
      First and last name
    </td>
    <td>
      John Doe
    </td>
  </tr>
</table>


How can I fix that?
sticks464



Joined: 31 Dec 2006
Posts: 993

PostPosted: Mon Nov 19, 2007 5:46 am     Reply with quote

You have to apply a width to all first column tds
Code:
<table width="100%" border="1" cellspacing="4" cellpadding="0">
  <tr>
    <td width="100">Name</td>
    <td>Value</td>
  </tr>
  <tr>
    <td width="100">First and Last Name</td>
    <td>John Doe</td>
  </tr>
</table>
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> HTML Table All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial