diff options
author | bptato <nincsnevem662@gmail.com> | 2022-07-25 19:20:10 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2022-07-25 19:20:31 +0200 |
commit | cc92092fe8053f77d0c63e57c3990272b36be4ef (patch) | |
tree | 072415fc89542f9344062b29e799e937ca105371 /src/css | |
parent | a76416401297cfc10ae6d0645f2ee212b5336a33 (diff) | |
download | chawan-cc92092fe8053f77d0c63e57c3990272b36be4ef.tar.gz |
Fix & simplify blockgroup
+ start implementing table
Diffstat (limited to 'src/css')
-rw-r--r-- | src/css/values.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css/values.nim b/src/css/values.nim index fc7e035f..be8f5305 100644 --- a/src/css/values.nim +++ b/src/css/values.nim @@ -589,7 +589,7 @@ func cssDisplay(d: CSSDeclaration): CSSDisplay = of "inline": return DISPLAY_INLINE of "list-item": return DISPLAY_LIST_ITEM of "inline-block": return DISPLAY_INLINE_BLOCK - # of "table": return DISPLAY_TABLE + of "table": return DISPLAY_TABLE # of "table-row": return DISPLAY_TABLE_ROW # of "table-cell": return DISPLAY_TABLE_CELL # of "table-column": return DISPLAY_TABLE_COLUMN |