diff options
author | bptato <nincsnevem662@gmail.com> | 2024-03-01 14:01:10 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-03-01 14:01:10 +0100 |
commit | e0574a00c2c001671be825e55fecb741238b438b (patch) | |
tree | b2d534c451324297c8c1029b6a40096051b505b8 /res | |
parent | 87ba9a87be15abbe06837f1519cfb76f4bf759f3 (diff) | |
download | chawan-e0574a00c2c001671be825e55fecb741238b438b.tar.gz |
css: remove caption-side: left, right, fix caption-side: bottom
left/right never really worked correctly, is non-standard, and the only browser that supported it (Firefox) removed it years ago. bottom was adding the table width to its offset instead of the height, that is now fixed.
Diffstat (limited to 'res')
-rw-r--r-- | res/ua.css | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/res/ua.css b/res/ua.css index 45559e99..f58fb693 100644 --- a/res/ua.css +++ b/res/ua.css @@ -105,14 +105,6 @@ caption[align=bottom] { caption-side: bottom; } -caption[align=left] { - caption-side: left; -} - -caption[align=right] { - caption-side: right; -} - input { margin-right: 1ch; white-space: pre; |