Created
April 17, 2014 02:06
-
-
Save webin/10948119 to your computer and use it in GitHub Desktop.
chrome small font
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Chrome Small Font</title> | |
| <style> | |
| .div1 { | |
| font-size: 10px; | |
| -webkit-transform-origin-x: 0; /* 去除偏移量 */ | |
| -webkit-transform: scale(0.83); /* 小于12号字体 */ | |
| /* 只针对block inline-block */ | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="div1"> | |
| chrome 小于12号字体 | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment