For other monks: The rendering problem shows up for me in Firefox, but not Opera or Safari.

Your HTML looks like this:

<br><center>Apples, 216<Br> <br><center>Apples, Aphis, 228<Br> <br><center>Apples, Bitter Rot, 223<Br> <br><center>Apples, Borers, 226, 270<Br> <br><center>Apples, Brown Rot, 224, 275<Br>
In HTML, the BR tag, like an IMG tag, stands alone; no closing /BR is needed, or even allowed. The CENTER tag, like most tags in HTML, is *paired*, and requires a closing /CENTER tag. By using so many (over 256?) CENTER tags without closing them, you are creating so many nested levels for the browser to keep track of, that it gives up trying.

When I changed your HTML to close (or "balance") the tags, it renders properly:

<center>Apples, 216</center><br> <center>Apples, Aphis, 228</center><br> <center>Apples, Bitter Rot, 223</center><br> <center>Apples, Borers, 226, 270</center><br> <center>Apples, Brown Rot, 224, 275</center><br>


In reply to Re: losing html in print calling function. by Util
in thread losing html in print calling function. by Librum

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.