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!
Table Layout - Columns
Post new topic   Reply to topic    HTML Help Forum Index -> HTML Table
View previous topic :: View next topic  
Author Message
kloepper



Joined: 07 Apr 2005
Posts: 1

PostPosted: Thu Apr 07, 2005 10:14 pm     Table Layout - Columns Reply with quote

How do I get the data (numbers) to line up in columns below their headers?

In the html below, all the numbers line up in one column instead of the 2 columns I'd like them to line up in.

Thank you
============================================
<html>
<body>
<h2>XBRL Instance Stylesheet</h2>
<table>
<col align="left">
<col style="color:red">
<thead>
<tr>
<th>FixedAssets</th>
<th>StocksInventory</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<tr>843000000</tr>
<tr>1408000000</tr>
<tr>1192000000</tr>
</td>
<td>
<tr>2000000</tr>
<tr>2000000</tr>
<tr>2000000</tr>
</td>
</tr>
</tbody>
</col>
</col>
</table>
</body>
</html>
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8431
Location: Castle Pines North, CO USA

PostPosted: Fri Apr 08, 2005 4:22 am     Reply with quote



You have two columns, and then you have three columns actually. How did you want the bottom columns to line up?
Code:
<html>
<body>
<h2>XBRL Instance Stylesheet</h2>

<table border="0" width="25%" id="table1" cellspacing="0" cellpadding="0">
   <tr>
      <td>FixedAssets</td>
      <td><span style="color:red; font-weight:bold">StocksInventory</span></td>
   </tr>
   <tr>
      <td>843000000</td>
      <td>1408000000</td>
   </tr>
   <tr>
      <td>2000000</td>
      <td>2000000</td>
   </tr>
</table>
</body>
</html>
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