Elements with css font-size <12px doesn't have effect in Google Chrome - remains font-size 12px.

What should I do?

My Google Chrome browser uses default settings. My version is 4.0.249.89. I am using Windows XP.

You can paste the following code to your Google Chrome to test it:

<html>
<body>
<p style="font-size:6px;">test 6px</p>
<p style="font-size:7px;">test 7px</p>
<p style="font-size:8px;">test 8px</p>
<p style="font-size:9px;">test 9px</p>
<p style="font-size:10px;">test 10px</p>
<p style="font-size:11px;">test 11px</p>
<p style="font-size:12px;">test 12px</p>
<p style="font-size:13px;">test 13px</p>
<p style="font-size:14px;">test 14px</p>
<p style="font-size:15px;">test 15px</p>
<p style="font-size:16px;">test 16px</p>
</body>
</html>

Results from different browser: http://i178.photobucket.com/albums/w258/neodeep2001/chrome-font-size-diff.jpg

link|improve this question

1  
Do you have an example we can look at? There's no reason why it shouldn't work! – deanWombourne Feb 19 '10 at 9:17
I have just added a piece of sample code. – Billy Feb 19 '10 at 9:26
Works for me without a problem. – Kitson Feb 19 '10 at 9:33
I have added the screencap of 4 browsers. – Billy Feb 19 '10 at 9:48
It works here in 5.0.333.0. – Anonymous Feb 19 '10 at 10:01
show 3 more comments
feedback

8 Answers

disable the auto adjustment by following style.

  • { -webkit-text-size-adjust:none; }
link|improve this answer
I think this should be accepted as the Answer. Although beware of possible pitfalls with this CSS rule: 456bereastreet.com/archive/201011/… – Chris Jacob May 3 '11 at 15:48
That works on Safari but not on Chrome for me. – Sergi Jun 10 '11 at 17:04
feedback

According to http://www.google.com/support/forum/p/Chrome/thread?tid=389f306a52817110&hl=en Chrome supports a minimum font size. If you open "Documents and Settings\User_Name\Local Settings\Application Data\Google\Chrome\User Data\Default\Preferences" in a text editor, do you see something like the following?:

   "webkit": {
      "webprefs": {
         "default_fixed_font_size": 11,
         "default_font_size": 12,
         "fixed_font_family": "Bitstream Vera Sans Mono",
         "minimum_font_size": 12,
         "minimum_logical_font_size": 12,
         "sansserif_font_family": "Times New Roman",
         "serif_font_family": "Arial",
         "standard_font_is_serif": false,
         "text_areas_are_resizable": true
      }
   }

Closing Chrome, changing the minimum font size, and restarting Chrome may help.

link|improve this answer
See "Digi3 Colin" answer regarding CSS fix: -webkit-text-size-adjust:none; stackoverflow.com/questions/2295095/… – Chris Jacob May 3 '11 at 15:49
feedback

It works for me.

Try to:

  • use webdesigner tools, to check what css affects your element
  • post html and css aswell, so we can maybe figure out more

Edit: Latest Chrome (stable) renders this this way: Rendering in chrome

link|improve this answer
I have added the screencap of 4 browsers. – Billy Feb 19 '10 at 9:45
take screenshot of css that affects it - right click on one of test text: 6 - 11px and pick "check element" or something like it (i have localized chrome) - it should be the last one (if you know what i'm talking about, stop reading further) - then document inspector opens up and on the right side is panel styles - screenshot it and post it pls, maybe we'll see. – Adam Kiss Feb 19 '10 at 10:18
feedback

this should not be correct, you probably have an element overwriting your current given attribute.

like this:

body {
  font-size:10px;
}

#content {
  font-size:12px;
}
link|improve this answer
I have just added a piece of sample code. – Billy Feb 19 '10 at 9:25
feedback

what happens if you make the < P > tag a < SPAN > tag?

is it possible you have defined your < p > tag somewhere along?

link|improve this answer
The sample code is enough for testing. Just paste the code to your Chrome to have a look. – Billy Feb 19 '10 at 9:54
feedback

It works for me in Chrome 4.0.249.78 (36714) , could you be viewing a cached copy?....Try emptying your page cache (I've found chrome very fond of its cache)

link|improve this answer
It's not the cache problem. I am using Windows XP. Does the problem only happen in certain OS? – Billy Feb 19 '10 at 10:00
I'm able to view the html code you posted fine and I'm using Chrome on Windows XP Pro (admittedly a slightly older build and the beta version with extensions support), the cache is the only thing I can think of if you are using the same basic html as you pasted in your OP. What happens when you use the "inspect element" menu option, does it show up as having your smaller font sizes?...or does it look like it's being overridden in some way? – James B Feb 19 '10 at 10:47
What about viewing your html file in an incognito window?...Sorry but I'm still stuck on it being a cached copy of the file (it took me ages to change my Stack Overflow avatar and get it to show up in chrome due to its overzealous caching)...although it would show up correctly in an incognito window (as it was bypassing the cache) – James B Feb 19 '10 at 10:50
feedback

Is there a minimum font size preference? Is it set to 12px? Is page/text zoom enabled? Do you have any kind of Chrome plugins that alter page contents?

link|improve this answer
I was looking for a minimum font, too, but I couldn't find it. Doesn't mean the pref isn't hidden somewhere, though. – Anonymous Feb 19 '10 at 10:31
I am using default setting and do not have any plugins. – Billy Feb 19 '10 at 10:39
feedback

Have you tried putting an "!important" clause behind the font styles? This would override everything else. At least then you would know where to look for the problem. Like this:

<p style="font-size:6px !important;">test 6px</p>
link|improve this answer
That shouldn't be necessary when he's using a style attribute instead of a style rule. – Richard JP Le Guen Feb 19 '10 at 13:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.