Skip to content

Instantly share code, notes, and snippets.

@webin
Created April 17, 2014 02:06
Show Gist options
  • Select an option

  • Save webin/10948119 to your computer and use it in GitHub Desktop.

Select an option

Save webin/10948119 to your computer and use it in GitHub Desktop.
chrome small font
<!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