0
0

Создал файл для иконочного шрифта font_icon.css

Вкладка PROBLEMS в терминале выдает значение "Unknown property: 'speak' css(unknownProperties) [16, 3]

Меняю свойство на speak-as предупреждение уходит, нужно или нет менять значение speak

Скрин предупреждения https://pastenow.ru/2245a5e8e06d35cdc496a35572f74fd0

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts_icons/icomoon.eot?gcd8px');
  src:  url('../fonts_icons/icomoon.eot?gcd8px#iefix') format('embedded-opentype'),
    url('../fonts_icons/icomoon.ttf?gcd8px') format('truetype'),
    url('../fonts_icons/icomoon.woff?gcd8px') format('woff'),
    url('../fonts_icons/icomoon.svg?gcd8px#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook-f-brands:before {
  content: "\e900";
}
.icon-instagram-square-brands:before {
  content: "\e901";
}
.icon-linkedin-brands:before {
  content: "\e902";
}
.icon-twitter-brands:before {
  content: "\e903";
}

Павел Рычков
4 years ago






Еще нет ответов