http://uaweb.arizona.edu/r
http://codepunk.hardwar.or
those should help you get started with divs
Main Topics
Browse All TopicsI have this code:
<table>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
Is it possible to have one td a fixed height, and the others different, as when you adjust the height of one td, the height of the other two tds is made to comply with it - i.e. made the same height.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
http://uaweb.arizona.edu/r
http://codepunk.hardwar.or
those should help you get started with divs
And with all respect to you Ken....youre wrong. view the example i created below. Each td is the same height, even explictly classing them to be different. Table structure is set. All cells in a row must be the same height. It is the nature of tabular data and tables.
<html>
<head>
<title>Untitled</title>
<style type="text/css">
<!--
.taller { height: 300px; }
.shorter { height: 100px; }
-->
</style>
</head>
<body>
<table summary="" border="1">
<tr>
<td class="taller">1</td>
<td class="shorter">2</td>
</tr>
</table>
</body>
</html>
Business Accounts
Answer for Membership
by: flow79Posted on 2004-06-16 at 08:13:08ID: 11325311
If you wish to accomplish something like this, you cannot use a table. Instead use the div tag and create your layout. Tables are for tabular data, and as such create themselves in a manner which keeps rows and columns lined up.