diff options
Diffstat (limited to 'src/css/cssvalues.nim')
-rw-r--r-- | src/css/cssvalues.nim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/css/cssvalues.nim b/src/css/cssvalues.nim index e3a09a39..1d0f6425 100644 --- a/src/css/cssvalues.nim +++ b/src/css/cssvalues.nim @@ -1593,7 +1593,9 @@ func splitTable*(computed: CSSComputedValues): # wrapper & actual table layouts share the same sizing from the wrapper, # so we must add them here. cptPaddingLeft, cptPaddingRight, cptPaddingTop, cptPaddingBottom, - cptWidth, cptHeight, cptBoxSizing + cptWidth, cptHeight, cptBoxSizing, + # no clue why this isn't included in the standard + cptClear } for prop in CSSPropertyType: if prop in props: |