I need to change the border properties of the table that I created, but I work for a Content Management System that does not allow me to edit style sheets, but only HTML pages.
Therefore, I can manipulate some properties of the table using <table style="...."> , but when I use the border attribute, it only affects the outer border, not the border that exists between the individual cells.
Obviously, I can add HTML rules to the <table> ie <table border="1px"> , but they do not overwrite the external stylesheet that affects the border, so I need an inline CSS solution.
Is the only way to change the border between cells to manually add a border property for each td or am I missing something?
Thank you for your help,
Kozzy1
source share