Re: [csswg-drafts] [css-round-display][mediaquery] Properly define 'viewport-fit'

Also, the syntax in your examples is incorrect.

`@viewport (viewport-fit: cover) { /* styles for the round screen */ }
`
should be
```

@viewport {
  viewport-fit: cover;
}
@media (shape: round) {
  /* styles for the round screen */
}
@media (shape: rect) {
  /* styles for the rectangular screen */
}

```

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

Received on Tuesday, 21 June 2016 05:55:05 UTC