欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

css font-stretch属性怎么用

程序员文章站 2022-04-26 22:37:55
...
css font-stretch属性可对当前的 font-family 进行伸缩变形,所有主流浏览器都不支持font-stretch属性。

css font-stretch属性怎么用

css font-stretch属性怎么用?

作用:可对当前的 font-family 进行伸缩变形。

注释:所有主流浏览器都不支持 font-stretch 属性。

css font-stretch属性使用示例

<!DOCTYPE html>
<html>
<head>
<style>
#div1 {font-stretch:condensed;}
#div2 {font-stretch:expanded;}
</style>
</head>
<body>
<p><b>Note:</b> No browsers support the font-stretch property.</p>
<div>
Some normal text in a div element.
</div>
<div id="div1">
Some condensed text in a div element.
</div>
<div id="div2">
Some expanded text in a div element.
</div>
</body>
</html>

效果输出:

css font-stretch属性怎么用

以上就是css font-stretch属性怎么用的详细内容,更多请关注其它相关文章!

相关标签: css font-stretch