Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - Table elements

 
Thread Tools Search this Thread
Old 04-03-2006, 10:45 AM   #1
Default Table elements


Hi All,

I have two tables one inside the other. Just like

<table height="100" id="outerTable">
<tr>
<td>
<table id="innerTable">
<tr><td>News</td></tr>
</table>
</td>
</tr>
</table>

What I need is, I want the inner table height should be the same as
outertable. But I won't specify the height directly in the innertable.
I tried with height="100%". But it is not working. Anyone can suggest
me plz.



santel
  Reply With Quote
Old 04-03-2006, 01:20 PM   #2
Flinky Wisty Pomm
 
Posts: n/a
Default Re: Table elements
barring padding and margins, the above should work.

The following looks okay to me:

<html>
<head>
<style type="text/css">

table
{
border: 1px solid #F00;
border-collapse: collapse;
}

#outerTable td
{
padding: 0;
}

#innerTable
{
height: 100%;
margin: 0;
}
</style>
</head>

<body>
<table height="100" id="outerTable">
<tr>
<td>
<table id="innerTable">
<tr><td>News</td></tr>
</table>
</td>
</tr>
</table>
</body>



Flinky Wisty Pomm
  Reply With Quote
Old 04-04-2006, 11:00 AM   #3
santel
 
Posts: n/a
Default Re: Table elements
Thanks for the reply. Got it



santel
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
changing Crystal report table at run time rakesh201180 Software 1 10-22-2008 10:58 AM
MCITP and stored procedure permissions Darrilgibson@gmail.com MCITP 5 06-07-2008 12:37 PM
How To Access HTML elements in code behind??? nedums_b Software 1 02-07-2008 07:15 PM
High-Def Playback: The Firmware Gotcha Ablang DVD Video 46 07-28-2007 07:25 AM
How to store dataset to a table in the database. Please be specific. Urgent fullblown General Help Related Topics 0 09-20-2006 03:55 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

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