HTML frame distribution

I am having trouble splitting HTML frames. I am using the following fields in HTML:

<table  width=900 border="1" cellspacing="10">
  <tr>
    <td width="500" height="170">section1 </td>
    <td width="400" rowspan=2> section2</td> 
  </tr>
  <tr>  
    <td width="500" height="400" valign="left">
      <div id="response">
      </div>
    </td>
  </tr>
</table>

      

This creates the table, but the problem is the response item and it is dynamically loaded. When it loads the dimensions of section 1, section 2 changes as well. Does anyone say an alter method splitting frames of the size of a variable, which means that changing the content in section 1 shouldn't affect section 2, and changing the #response response element shouldn't affect the size of section1?

Is there a new method to deal with this kind of scenario?

0


source to share


1 answer


Most browsers will load tables and other elements gradually so that people on slower connections don't have to wait five minutes to see something.



It doesn't matter if the table cell size changes. You can assign a width / height to the "answer" section, which should help with this dramatically resizing when the content is loaded.

+2


source







All Articles