I highly recommend to use tableless structure inside cfdocument to avoid such problems. But if is absoulte necessary for you to use tables, then here is a fix for you :-)
- Make sure that values of attribute border,
cellpadding and cellspacing is set to 0 in each table. e.g <table
cellspacing="0" border="0" cellspacing="0">
- Add following style in your style sheet.
td {
margin-left:0;
border-bottom:0;
border-top:0;
border-right:0;
padding-left:0;
}
No comments:
Post a Comment