gpt4 book ai didi

CSSTidy 破坏字体

转载 作者:行者123 更新时间:2023-11-28 07:05:12 24 4
gpt4 key购买 nike

我遇到了 CSSTidy 破坏我的字体声明的一些问题,我不确定问题出在哪里。最初我是在服务器端压缩,但也尝试通过 online utility 运行它去测试。它们都有相同的输出,只包含第一个声明。

我还应该指出原始 CSS(输入)工作正常,只是试图压缩它。

输入:

@font-face {
font-family: 'FuturaBT-Light';
src: url('26A674_0_0.eot');
src: url('26A674_0_0.eot?#iefix') format('embedded-opentype'),
url('26A674_0_0.woff') format('woff'),
url('26A674_0_0.ttf') format('truetype');
}
@font-face {
font-family: 'FuturaBT-Book';
src: url('26A674_1_0.eot');
src: url('26A674_1_0.eot?#iefix') format('embedded-opentype'),
url('26A674_1_0.woff') format('woff'),
url('26A674_1_0.ttf') format('truetype');
}
@font-face {
font-family: 'FuturaBT-Medium';
src: url('26A674_2_0.eot');
src: url('26A674_2_0.eot?#iefix') format('embedded-opentype'),
url('26A674_2_0.woff') format('woff'),
url('26A674_2_0.ttf') format('truetype');
}
@font-face {
font-family: 'FuturaBT-Bold';
src: url('26A674_3_0.eot');
src: url('26A674_3_0.eot?#iefix') format('embedded-opentype'),
url('26A674_3_0.woff') format('woff'),
url('26A674_3_0.ttf') format('truetype');
}

输出:

@font-face
{
font-family:FuturaBT-Bold;
src:url(26A674_3_0.eot?#iefix) format(embedded-opentype), url(26A674_3_0.woff) format(woff), url(26A674_3_0.ttf) format(truetype);
}

最佳答案

看起来 CSSTidy 使用的是 CSS 级别 2.1 规范,其中不包括 src 属性。我建议使用其他压缩工具,例如 clean-css node module , 或者使用在线压缩工具试试 https://csscompressor.net/

关于CSSTidy 破坏字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32998239/

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