I have code like: <table border="1" style="border-color:#EDECE6;" cellspacing="0" align="left">
I woudl like to add colour tha same for all table border.
Now is seen only on outside border.
How to do it?
I have code like: <table border="1" style="border-color:#EDECE6;" cellspacing="0" align="left">
I woudl like to add colour tha same for all table border.
Now is seen only on outside border.
How to do it?
CSS:
remove the border="1" on HTML just use:Code:table { border: #EDECE6 solid 1px; }
Code:<table cellspacing="0" align="left"> </table>
Bookmarks