gpt4 book ai didi

html - 字体系列: "AvantGarde";在 CSS 中

转载 作者:行者123 更新时间:2023-11-28 03:43:45 30 4
gpt4 key购买 nike

我正在 Adob​​e Photoshop 中处理图像。我从 Adob​​e Photoshop 获取的相同图像的 CSS 代码是:

CSS

  font-size: 25px;
font-family: "AvantGarde";
color: rgb(255, 255, 255);
text-transform: uppercase;
line-height: 1.792;
text-align: left;
-moz-transform: matrix( 1.65479981820633,0,0,1.66565153423699,0,0);
-webkit-transform: matrix( 1.65479981820633,0,0,1.66565153423699,0,0);
-ms-transform: matrix( 1.65479981820633,0,0,1.66565153423699,0,0);
position: absolute;
left: 690.337px;
top: 322.77px;
z-index: 103;

我想知道,如何将 font-family: AvantGarde 放入我的 CSS 代码中。由于某些原因,我无法在我的 CSS 中找到它。

最佳答案

您是否确保使用 @font-face 在 css 中包含指向字体的链接?即

body { /* this will apply to the whole body tag */
font-family: AvantGarde;
font-size: 25px;
font-family: "AvantGarde";
color: rgb(255, 255, 255);
text-transform: uppercase;
line-height: 1.792;
text-align: left;
-moz-transform: matrix( 1.65479981820633,0,0,1.66565153423699,0,0);
-webkit-transform: matrix( 1.65479981820633,0,0,1.66565153423699,0,0);
-ms-transform: matrix( 1.65479981820633,0,0,1.66565153423699,0,0);
}
@font-face {
font-family: AvantGarde;
src: url(AvantGarde.woff);
}

Photoshop 使用系统上安装的字体,以在您需要链接到 .woff 文件的网站上的 css 中包含其他字体。 https://www.w3schools.com/css/css3_fonts.asp

希望这对您有所帮助!

关于html - 字体系列: "AvantGarde";在 CSS 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44088913/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com