"CSS" How to let chrome support less than 12px of text

Source: Internet
Author: User


Google Chrome is the kernel of WebKit, there is a-webkit-text-size-adjust private CSS properties, it can be achieved by the font size does not affect the device or browser.
The CSS style is defined as follows:
-webkit-text-size-adjust:none;

But in the latest version of Google. This attribute is not supported and needs to be resolved by CSS3 transform, as follows:

CSS Section HTML Layout

body,p{margin:0; padding:0;}
p{font-size:10px;}
Span{-webkit-transform:scale (0.8);-o-transform:scale (1); display:inline-block;}

<p><span id= "Span1" > I am a font less than 12PX </span></p>

Explain:

1.{webkit-transform:scale(0.8);  display:inline-block}  //0.8位缩放倍数,具体自己根据实际需求修改,只能缩放可以定义宽高的元素,而span是行内元素,

Why define Display:inline-block instead of Display:block? The block is the exclusive line, so convert to Inline-block

2.{-o-transform:scale (1);} Opera is now the latest version of the WebKit kernel, the new version of Opera, is originally a 10px font.

Smile. Angle of rotation

qq:493177502

"CSS" How to let chrome support less than 12px of text

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.