Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>As you probably know, the tag has been deprecated, so chances are good you're just going to see weirder and weirder behavior from various modern browsers since there aren't really any 'standards' anymore for how to render it.</p> <p>Since it seems that you have to go in and change the code anyway, I'd highly recommend switching to CSS, even if it's as simple as adding a simple style tag like this:</p> <pre><code>&lt;style type="text/css"&gt; body { font-size: 14px; } &lt;/style&gt; </code></pre> <p>You can also look at doing a few find and replaces in the code, for example replacing all instances of 'font' with 'div' or 'p' as is appropriate. Then you can just create a single style rule for that type of element, and go from there. </p> <pre><code>&lt;style type="text/css"&gt; p { font-size: 14px; } &lt;/style&gt; </code></pre> <p>For an additional degree of control, rather than just replacing all the size="14" stuff with nothing, you could find and replace to get something like class="myclass" and then style that particular class.</p> <pre><code>&lt;style type="text/css"&gt; p.myclass { font-size: 14px; } &lt;/style&gt; </code></pre> <p>It might be a little more work right now (but not much, I swear!), but if the point is to get the code running on modern browsers, it's probably worth it. I don't think changing the DTD will help much in this case either. Check out this forum <a href="http://www.sitepoint.com/forums/showthread.php?607459-Can-t-change-font-using-Font-tag" rel="nofollow">http://www.sitepoint.com/forums/showthread.php?607459-Can-t-change-font-using-Font-tag</a> for more info.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload