为了基于 Javascript 自动删除未使用的 CSS,我们正在寻找一种解决方案来检测@font-face页面上是否使用了块。是否有一种简单的方法来验证 HTML 中是否正在使用某种字体?该方法getComputedStyle()需要测试每个单独的 HTML 元素并且效率不高。<style>@font-face { font-family: "Open Sans"; src: url("/fonts/OpenSans-Regular-webfont.woff2") format("woff2"), url("/fonts/OpenSans-Regular-webfont.woff") format("woff");}</style><html> ... </html><script>function test_if_open_sans_is_used() { return; }</script>
添加回答
举报
0/150
提交
取消