Since Chrome has a smallest font size setting, you can't use CSS to set font size less than (12px, by default):
font-size: 6px !important; /* This has no effect ! Sigh .. */
Instead, you may consider to use transform instead:
transform: scale(0.833); /* 10/12 = 0.833 */
And you may also consider to shift the <div> container to fix the position changed by transform:
position: relative;
left: -15px;
Showing posts with label size. Show all posts
Showing posts with label size. Show all posts
Thursday, July 21, 2016
Tuesday, February 23, 2016
Change font size by language using CSS
Quick useful when browser render text with different size in different languages:
html:lang(en) h1{
font-size: 20px;
}
html:lang(ko) h1{
font-size: 10px;
}
Reference: http://stackoverflow.com/questions/15267355/change-font-size-based-on-language
Subscribe to:
Posts (Atom)
CSP on Apache
To add CSP to root if sort of funny. The following will NOT work for most cases !! <LocationMatch "^/$"> Header s...
-
When Office2003 couldn't find file SKU011.CAB: regedit -> [HKEY_LOCAL_MACHINE] -> [SOFTWARE] -> [Microsoft] -> [Office] -...
-
The resolution can be changed by editing the BlueStack's registry: HKLM\SOFTWARE\BlueStacks\Guests\Android\FrameBuffer\0\Height and ...
-
Suppose you got a file in Big5 containing some HKSCS characters (e.g. 深水埗, 赤鱲角, etc). When your environment (Ref: Charset.defaultCharset( ) ...