diff options
author | bptato <nincsnevem662@gmail.com> | 2024-04-02 16:43:03 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-04-05 01:41:40 +0200 |
commit | 372f936f05abf8db2ce5e05c2a267289265095a6 (patch) | |
tree | b4d5843a0b4fd3e93942ddb8cb8451dff378791e /doc | |
parent | e673d6712b7f5a3ad543521bffaa479ab7a83fde (diff) | |
download | chawan-372f936f05abf8db2ce5e05c2a267289265095a6.tar.gz |
Initial flexbox support
Still far from being fully standards-compliant, or even complete, but it seems to work slightly less horribly than having no flexbox support at all on sites that do use it. (Also includes various refactorings in layout to make it possible at all to add flexbox.)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/architecture.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/architecture.md b/doc/architecture.md index 9b62daf7..cee904e1 100644 --- a/doc/architecture.md +++ b/doc/architecture.md @@ -291,8 +291,8 @@ It has some problems: * CSS was designed for pixel-based displays, not for character-based ones. So we have to round a lot, and sometimes this goes wrong. -* In the past years, websites have finally started using flexbox and grid, and - we have neither, so things look very ugly. +* In the past years, websites have finally started using grid, and we don't have + it, so those websites look very ugly. * Even what we do have has plenty of bugs. (Sad.) * It's slow on large documents, because we don't have partial layouting capabilities. |