Create liquid window between 2 tables?

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Create liquid window between 2 tables?

    The page contains 2 tables. One at the top and one at the bottom. The tables are measured in pixels. Top one is 20 high and the bottom one is 59 high. I want to create an area between these 2 tables that would contain text etc and would need to scroll down if overflow occurs. This area would resize when the browser window is resized.

    How would I do this?



    Seddon webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. create tables in pdf using perl
      Hello All, Is there any perl module that will let me create tables inside pdf document? I need to create reports in table format in a pdf...
    2. create window / kill window
      I am working on a window that fly's in as a result of a button release. I have the window animated to fly in and fly out, I am wanting it to fly in...
    3. Anybody Know anything about Liquid Web
      answer is quoted below. ................ All you need to do is to utilize two properties of the Stage object, scaleMode and align as well as...
    4. Create and Drop tables in a linked server
      Hi, I have a linked server admin-new, is there a way to create and tables in the linked servers? I tried: drop table .master.dbo.tempIDs ...
    5. How to create tables referenced each other
      I had 'SQL the complete reference' authored by James R. Groff. I can not believe it I can not find email or home page for this book or authors. Now...
  3. #2

    Default Re: Create liquid window between 2 tables?

    "Seddon" [email]webforumsuser@macromedia.com[/email] wrote:
    > The page contains 2 tables. One at the top and one at the bottom. The
    tables are measured in pixels. Top one is 20 high and the bottom one is
    59 high. I want to create an area between these 2 tables that would
    contain text etc and would need to scroll down if overflow occurs. This
    area would resize when the browser window is resized.
    >
    You're not saying if you want the widths of the top and bottom tables
    expand when window is resized. Assuming you want them fixed width (e.g.
    700px) while the "main content" expands, you can use this table:

    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td valign="top">
    <table width="700" border="0" cellspacing="0" cellpadding="0"
    align="center" height="20">
    <tr>
    <td>&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top">&nbsp;</td>
    </tr>
    <tr>
    <td valign="top">
    <table width="700" border="0" cellspacing="0" cellpadding="0"
    align="center" height="59">
    <tr>
    <td>&nbsp;</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

    Please note that the height of top and bottom tables will not work if
    you don't put some content in them, e.g. a shim or an image that's
    exactly 20 resp. 59 px high.

    If you want the top and bottom tables to expand with the browser width,
    too, yopu can actually remove them and place the content straight in the
    upper and lower cells.

    HTH
    --
    Dan Vendel - *GOF*
    [url]http://www.vendel.info[/url]
    Contact me directly by clicking here:
    [url]http://contact.vendel.info[/url]
    Formmail tutorial:
    [url]http://www.vendel.info/tut/formmail.html[/url]
    Nested table demonstration:
    [url]http://www.vendel.info/tabletut/[/url]

    Dan Vendel *GOF* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139