I am specifically having an issue with table borders not rendering, but it looks like cell padding is also not working so there may be others as well.
In 'Read' mode, when I Inspect a table element in my browser, I see it is using the outdated HTML syntax
<table border="1">
instead of the modern syntax
<table style="border-width: 1px">
I don't know if this is root cause of the problem, but might be related.
I've reproduced the issue in Chrome (Windows 11 and Android), Microsoft Edge (W11), and Firefox(W11)
1) Create a new Text page in a manuscript
2) Insert a table of any size and populate elements (which defaults to a 1px border)
3) Toggle "Read" mode
Expected Result: Table will not render any borders
4) Use the browser's Inspect tool to inspect the table element
Expected Result: Table HTML uses old syntax
<table style="<other settings>" border="1">
5) In the inspect tool, edit the table element to
<table style="<other settings>; border-width: 1px;">
Expected Result:
Table border renders correctly
This is reproducible and not tied to a specific manuscript in my world
Example Images
1) Create a table in a manuscript in write mode: https://wa-cdn.nyc3.digitaloceanspaces.com/user-data/production/e85b1fb7-e970-48d5-adf1-3fac5960666a/uploads/images/34c2733d88c42ffc601777d6c4903e00.png
2) Switch to read mode to see the incorrectly rendered table: https://wa-cdn.nyc3.digitaloceanspaces.com/user-data/production/e85b1fb7-e970-48d5-adf1-3fac5960666a/uploads/images/3a4700fecc6823171f6c144d1cfed4c9.png
3) Inspect the table element to see the old border="1" syntax: https://wa-cdn.nyc3.digitaloceanspaces.com/user-data/production/e85b1fb7-e970-48d5-adf1-3fac5960666a/uploads/images/98b07069fa99f4ea52ad172d1b83009c.png
4) Edit the table element in the Inspect tool: https://wa-cdn.nyc3.digitaloceanspaces.com/user-data/production/e85b1fb7-e970-48d5-adf1-3fac5960666a/uploads/images/3329fca76da9e061c76811a373d9ab5e.png
5) Properly rendered read mode table using the edited element: https://wa-cdn.nyc3.digitaloceanspaces.com/user-data/production/e85b1fb7-e970-48d5-adf1-3fac5960666a/uploads/images/38d5fd41f0e3928d2ff746fba77213e9.png