Forum Moderators: open
Web font size can be specified via four common units: pixels (px), points (pt), EMs (em), and percent (%).
Pixels are “CSS pixels” and vary based on device size and density.
Points are defined in relation to pixels. A single pixel is 0.75 points*.
EMs and percent are “relative” units: they are relative to the inherited size and properties of the font being used. 1 EM is equivalent to 100%.
table {font-size: 100%; font-family: inherit;} a specific font size tag (font size="4", etc)
Mobile device friendly html does not specify width
What does your DTD say?
Frankly it sounds as if your entire site is way overdue for an html overhaul.
But when that page is viewed by someone using Safari on an iPhone, Chrome or Firefox on an Android phone, not all page text displays the same. Most of the text in the layout table's main cell appears in a large font size.
<!DOCTYPE html>
<html>
<head><title>Test</title></head>
<body>
<p style="width:30%;float:left;">Some text goes here, some text goes here, some text goes here,
some text goes here, some text goes here, some text goes here, some text goes here, some text
goes here, some text goes here, some text goes here, some text goes here, some text goes here,
some text goes here, some text goes here, some text goes here, some text goes here, some text
goes here, some text goes here.</p>
<!-- The following text appears larger on mobile browsers (100%) -->
<p>Some text goes here, some text goes here, some text goes here,
some text goes here, some text goes here, some text goes here, some text goes here, some text
goes here, some text goes here, some text goes here, some text goes here, some text goes here,
some text goes here, some text goes here, some text goes here, some text goes here, some text
goes here, some text goes here.</p>
</body>
</html>
Text in wider blocks appears larger. AFAIK this is the same with all mobile browsers, regardless of whether you are using tables or your code is valid.
AFAIK this is the same with "all" mobile browsers...
No, it doesn't do that on the iPhone, ...
Do you mean...
text-size-adjust (if absolutely necessary) and basically designing more responsively.