Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Height problem

    We need to find a solution for this problem for school:
    My HTML-code says that the height of my table is set on 100%, but when I
    open my website in Internet Explorer, I don't see that the table fills the
    whole screen...


    Hope I'll get the answer soon,
    NC.




    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>hoogte</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    body {
    background-color: #CCCCCC;
    }
    -->
    </style></head>


    <body>
    <table width="750" height="100%" border="0" align="center" cellspacing="0"
    bordercolor="#ECE9D8">
    <tr bordercolor="#3399CC" bgcolor="#3399CC">
    <td width="100">&nbsp;</td>
    <td width="650"><h3>HOOFDING</h3></td>
    </tr>
    <tr>
    <td width="100" valign="top" bordercolor="#3399CC" bgcolor="#3399CC"
    ><h3>LINKS</h3></td>
    <td width="650" valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF"
    ><h3>INHOUD</h3></td>
    </tr>
    </table>
    </body>
    </html>

    Killerbee_007 Guest

  2. Similar Questions and Discussions

    1. Pbm with Height
      Hi Buddies, I have a strange pbm here. I have one Application with a height of 5000 px(its needed). Inside i have one Panel with a height of 4000...
    2. popup menu cell height problem
      Hi. I'm trying to create a popup menu with the "wizard" in Dreamweaver MX. It does most of what I want, but there's one problem: some menu items are...
    3. height 100%
      hi, i need to make a table of 9 squares. this explains it better http://www.othersidecreation.com/test.html now, the code works on internet...
    4. dynamic text field height problem
      hi, i dont remember having issues with this, but recently it's been constantly happening to me.. everytime i try to load external text through a...
    5. height of swf
      can I dynamic adjust height of swf in browser I do not want to scale swf, I would like to increase hight of "work area" (main stage) fg I have...
  3. #2

    Default Re: Height problem

    Here's the deal.

    A doctype on an HTML page tells the browser how to render the page. Yours
    tells the browser to render the page in standards mode. In standards mode,
    the browsers all render the same (so they say - but in practice, while not
    true, it's much more uniform).

    Table height is invalid HTML. It always has been - it was never a part of
    HTML's specs.

    Browsers in quirks mode will try to render table heights. Browsers in
    standards mode willl not.

    Geddit?


    --
    Murray --- ICQ 71997575
    Team Macromedia Volunteer for Dreamweaver
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================

    "Killerbee_007" <webforumsuser@macromedia.com> wrote in message
    news:dfsm8g$25$1@forums.macromedia.com...
    > We need to find a solution for this problem for school:
    > My HTML-code says that the height of my table is set on 100%, but when I
    > open my website in Internet Explorer, I don't see that the table fills the
    > whole screen...
    >
    >
    > Hope I'll get the answer soon,
    > NC.
    >
    >
    >
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    > "http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <title>hoogte</title>
    > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    > <style type="text/css">
    > <!--
    > body {
    > background-color: #CCCCCC;
    > }
    > -->
    > </style></head>
    >
    >
    > <body>
    > <table width="750" height="100%" border="0" align="center" cellspacing="0"
    > bordercolor="#ECE9D8">
    > <tr bordercolor="#3399CC" bgcolor="#3399CC">
    > <td width="100">&nbsp;</td>
    > <td width="650"><h3>HOOFDING</h3></td>
    > </tr>
    > <tr>
    > <td width="100" valign="top" bordercolor="#3399CC" bgcolor="#3399CC"
    > ><h3>LINKS</h3></td>
    > <td width="650" valign="top" bordercolor="#FFFFFF" bgcolor="#FFFFFF"
    > ><h3>INHOUD</h3></td>
    > </tr>
    > </table>
    > </body>
    > </html>
    >

    Murray *TMM* 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