- From: Tab Atkins Jr. via GitHub <sysbot+gh@w3.org>
- Date: Mon, 30 Apr 2018 23:34:26 +0000
- To: public-css-archive@w3.org
If you add more text, and make it increasing numbers so you can actually tell exactly what part of the context you're looking at, Chrome's behavior becomes *even more inexplicable*:
```html
<!DOCTYPE html>
<style>
html { border: solid gray; width: 10em; margin: 3em; height: 2em; display: flex; justify-content: flex-end; }
body { position: absolute; border: solid orange; }
</style>
<body>
<script>
document.body.textContent = Array.from(Array(400), (e,i)=>i).join(" ");
</script>
```
Swap `html` between flex-start (sensible), flex-end (wut), and center (double wut).
--
GitHub Notification of comment by tabatkins
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/1432#issuecomment-385559424 using your GitHub account
Received on Monday, 30 April 2018 23:34:34 UTC