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!
SImple Example - TD Height Issue!!
Post new topic   Reply to topic    HTML Help Forum Index -> HTML Table
View previous topic :: View next topic  
Author Message
nm4568



Joined: 15 Oct 2008
Posts: 1

PostPosted: Wed Oct 15, 2008 10:14 am     SImple Example - TD Height Issue!! Reply with quote

I have a simple 2 column 2 row table that looks like the code below. I want to expand cell 2's height without expanding cell 1's height. I need this to be dynamic due to different users seeing different heights in cell 2. Cell 3's height can change all it wants to...I just dont want cell 1's height to change!!

<html>
<head>
<title>Height Issue</title>
</head>
<body>
<table>
<tr>
<td width="100px" height="100px"style="background-color: ##00FF00">cell 1</td>
<td rowspan="2" width ="100px" height="200px"style="background-color: #00FFFF">Cell 2</td>
</tr>
<tr>
<td width ="100px"height="100px"style="background-color: #FFFF00">Cell 3</td>
</table>
</body>
</html>
PayneLess Designs



Joined: 28 Feb 2007
Posts: 1408
Location: Biloxi, MS

PostPosted: Wed Oct 15, 2008 4:54 pm     Reply with quote

Can't use width="XXpx" or height="YYpx". Move them inside of style attribute and make them: width: XXpx; and height: YYpx;. Cells expand according to the amount of content inside them. Possibly change cell 2's width to a percent.

Code:
<table summary="Test Table">
<tr>
<td style="width: 100px; height: 100px; background: #0f0">Cell 1</td>
<td rowspan="2" style="width: 100px; background: #0ff;">Cell 2</td>
</tr>
<tr>
<td style="width: 100px; height: 100px; background: #ff0;">Cell 3</td>
</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