css – SASS和@ font-face

前端之家收集整理的这篇文章主要介绍了css – SASS和@ font-face前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下CSS – 我将如何描述它在SASS?我试过反向编译它与css2sass,只是继续得到错误….是我的CSS(它的工作;-))?
@font-face {
  font-family: 'bingo';
    src: url("bingo.eot");
    src: local('bingo'),url("bingo.svg#bingo") format('svg'),url("bingo.otf") format('opentype');
}

解决方法

如果有人想知道 – 这可能是我的css …
@font-face
  font-family: "bingo"
  src: url('bingo.eot')
  src: local('bingo')
  src: url('bingo.svg#bingo') format('svg')
  src: url('bingo.otf') format('opentype')

将呈现为

@font-face {
  font-family: "bingo";
  src: url('bingo.eot');
  src: local('bingo');
  src: url('bingo.svg#bingo') format('svg');
  src: url('bingo.otf') format('opentype'); }

这似乎足够近了…只需要检查SVG渲染

原文链接:https://www.f2er.com/css/220018.html

猜你在找的CSS相关文章