欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

css如何定義文字拉伸

錢衛國1年前8瀏覽0評論

CSS可以通過font-stretch屬性來定義文字拉伸程度,它控制了字母之間的橫向間距,使文本的寬度變化。

font-stretch: normal;
font-stretch: ultra-condensed;
font-stretch: extra-condensed;
font-stretch: condensed;
font-stretch: semi-condensed;
font-stretch: semi-expanded;
font-stretch: expanded;
font-stretch: extra-expanded;
font-stretch: ultra-expanded;

font-stretch取值有九種,除normal外,其他八種對應的拉伸程度由小到大依次是ultra-condensed、extra-condensed、condensed、semi-condensed、semi-expanded、expanded、extra-expanded和ultra-expanded。

在應用font-stretch屬性時,必須同時指定font-family、font-size等字體相關的屬性。

font-family: "Helvetica Neue", sans-serif;
font-size: 20px;
font-stretch: condensed;

font-stretch屬性不常用,由于瀏覽器兼容性差,建議在使用時進行兼容性測試。