<HTMLPracticalMode>
True enough, however assuming (a dangerous thing) that the target audience is using PC-only devices (as opposed to wireless/etc) it is usually safe to assume that there is room for two columns of frames in the window (the menubar/main real-estate phenomenon). Additionally, it is possible to use relative values with absolute positioning and widths

<div style="position:absolute; top:0px;left:0px;width:100%;height: +100px;" > header real estate </div> <div style="position:absolute; top:100px;left:0px;width:20%;" > left menu </div> <div style="position:absolute; top:100px;left:20%;width:80%;" > main real estate </div>
</HTMLPracticalMode>

I'm not going to disagree with you that in general staying away from anything that assumes a particular screen size, but your same advice would also apply to

And since he's already got frames here, whether he picks tables to maintain his possibly-too-wide page format, absolute-positioned seems easier


In reply to Re: Re: Re: Convert HTML docs with frames into a single HTML doc? by AidanLee
in thread Convert HTML docs with frames into a single HTML doc? by osfameron

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.