- From: Jihye Hong via GitHub <sysbot+gh@w3.org>
- Date: Wed, 30 Aug 2017 06:58:31 +0000
- To: public-css-archive@w3.org
Having the `visual` value is useful, but some cases must be considered when defining the visual order.
For example, like below:
```css
button {
position: absolute;
nav-order: visual;
}
button#b1 {
top: 60px;
width: 80px;
height: 80px;
}
button#b2 {
top: 10px; left: 100px;
width: 80px;
height: 40px;
}
button#b3 {
top: 70px; left: 120px;
width: 70px;
height: 40px;
}
```
which object would be the next order after `#b1`?
--
GitHub Notification of comment by jihyerish
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1764#issuecomment-325900627 using your GitHub account
Received on Wednesday, 30 August 2017 06:58:30 UTC