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

  1. #1

    Default autostretch madness

    so ive been using DW fora few years and all of a suddenive come across this
    madness wheni started using DW04, autostretch on the height (100%) code doesnt
    work on tables anymore .. im guess i now have to make it relative to the
    browser window (which never had to be done) but i dont know the best way to go
    about that .. if anyone have any suggestions could you let me know im going
    insane over making this top to bottom table.
    (table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0")
    note this code works on older IE versions but do not work on safari or
    anyother broser. if anyone else has had this problem could i get a little help.

    serialRei Guest

  2. Similar Questions and Discussions

    1. How to build a panel that autostretch vertical
      Want to bulid a vertical panel that stretches just like the beige panel on the left hand side of the example shown on the link below. Please email...
    2. Make Row Autostretch
      I understand how to make a column autostretch so it stretches to the width of the browser window. Is there a way to make a row autostretch so it...
    3. Madness, I call it madness
      Maybe it's me who is mad but... I have a windows application with a datagrid. On pressing F5 (when the grid or any grid's cell has a focus) I...
    4. eval() madness
      Hi Folks, I have done the obligatory search and have not yet been able to find anything that will help me in my quest to get a small script...
    5. flv -> swf madness
      i've created a flv from a quicktime movie and exported it out as a swf then i load that swf into a movieclip and everything works fine except that...
  3. #2

    Default Re: autostretch madness

    serialRei wrote:
    > so ive been using DW fora few years and all of a suddenive come across this
    > madness wheni started using DW04, autostretch on the height (100%) code doesnt
    > work on tables anymore .. im guess i now have to make it relative to the
    > browser window (which never had to be done) but i dont know the best way to go
    > about that .. if anyone have any suggestions could you let me know im going
    > insane over making this top to bottom table.
    > (table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0")
    > note this code works on older IE versions but do not work on safari or
    > anyother broser. if anyone else has had this problem could i get a little help.
    >
    Here's the deal.

    A doctype on an HTML page tells the browser how to render the page. If
    there is no doctype, or if there is an invalid one, the page is rendered
    in quirks mode. If there is a valid doctype, the page is rendered in
    standards mode.

    DMX (and earlier) inserted a broken doctype on the page (i.e.,
    functionally equivalent to no doctype). Earlier versions inserted NO
    doctype. Hence, all these pages are rendered in quirks mode.

    In quirks mode, the browser makes an attempt to render invalid HTML.
    Not all browsers attempt the same rendering - so you will see a variety
    of differences, comparing one browser to the next on the same page.

    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
    ==================
    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