diff options
author | bptato <nincsnevem662@gmail.com> | 2021-12-15 20:47:30 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-12-15 20:47:30 +0100 |
commit | dd58218f02b0d73e4e148947b7fd61c7d3716804 (patch) | |
tree | 9193e0e476a30129c8b10d9dd012d6ad93af7d5e /src/css/values.nim | |
parent | c62b3599a688443fa9e5dc887e2d1de3e9c0841c (diff) | |
download | chawan-dd58218f02b0d73e4e148947b7fd61c7d3716804.tar.gz |
Initial (and defective) inline-block implementation
Diffstat (limited to 'src/css/values.nim')
-rw-r--r-- | src/css/values.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/css/values.nim b/src/css/values.nim index a30c79a4..82b82588 100644 --- a/src/css/values.nim +++ b/src/css/values.nim @@ -530,10 +530,10 @@ func cssDisplay(d: CSSDeclaration): CSSDisplay = of "block": return DISPLAY_BLOCK of "inline": return DISPLAY_INLINE of "list-item": return DISPLAY_LIST_ITEM - of "table": return DISPLAY_TABLE of "inline-block": return DISPLAY_INLINE_BLOCK - of "table-row": return DISPLAY_TABLE_ROW - of "table-cell": return DISPLAY_TABLE_CELL + # 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 # of "table-row-group": return DISPLAY_TABLE_ROW_GROUP # of "table-header-group": return DISPLAY_TABLE_HEADER_GROUP |