Page 1 of 1

Table border

PostPosted: 09 Jun 2017 07:00
by assapan
Hi,
I use some templates for my email which uses html table and i discover that the border is displayed where it should not .
so if you put in design mode or runtime the simple table
Code: Select all
 <table border="0"><tr><td>column1</td></tr></table>
it is converted to
Code: Select all
<table style="border:1px solid #000"><tr><td>column1</td></tr></table>


How can i prevent that ?

Image

Re: Table border

PostPosted: 09 Jun 2017 11:30
by Jorge Sousa
hi

Perhaps is because the border attribute is not supported in HTML5

https://www.w3schools.com/tags/tag_table.asp

Re: Table border

PostPosted: 09 Jun 2017 11:34
by assapan
Jorge Sousa wrote:hi

Perhaps is because the border attribute is not supported in HTML5

https://www.w3schools.com/tags/tag_table.asp


This might be a good reason :D thanks , so mean that i have to modify all of the templates i use :?