Re: [csswg-drafts] [css-fonts] description of font-style:italic is wrong

Huh. normal 

> Matches against a face that is classified as a normal face, one that is neither italic or obliqued. This represents an oblique value of "0".

```
@font-face {
  font-family: foo;
  src: url(foo-book.woff);
}
@font-face {
  font-family: foo;
  font-style: oblique;
  src: url(foo-obl.woff);
}
p { 
  font-family: foo;
  font-style: oblique 0 
}
```

So that matches foo-book because it asks for an angle of zero? Or foo-obl because that is the only one declared as oblique?
  

-- 
GitHub Notification of comment by svgeesus
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/2278#issuecomment-363527962 using your GitHub account

Received on Tuesday, 6 February 2018 18:58:51 UTC