- From: Brian Smith via GitHub <sysbot+gh@w3.org>
- Date: Thu, 01 Jun 2017 03:13:32 +0000
- To: public-css-archive@w3.org
Consider the following CSS:
```css
@supports (font-feature-settings: "subs" 1) {
sub, sup { vertical-align: baseline; font-size: 100% }
sub {
font-feature-settings: "subs" 1
}
sup {
font-feature-settings: "sups" 1
}
}
```
Basically, I want to use have the font position/size the superscripts and subscripts if it supports those features. Otherwise, I want to use the default positioning/sizing. However, this doesn't work, because the browser does support `font-feature-settings: "sups" 1` but the font itself is missing the feature.
--
GitHub Notification of comment by briansmith
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/520#issuecomment-305377558 using your GitHub account
Received on Thursday, 1 June 2017 03:13:38 UTC