To work around this behavior, change attribute values in the HTML source. To do this, follow these steps:
- Create a new page in FrontPage and insert a table. On the Table menu, point to Insert, and then click Table. Choose the options you want and click OK.
- Right-click the table and then click Table Properties on the menu that appears.
- In the Cell spacing and Cell padding boxes, type 0, then click OK.
- Switch to HTML view.
- Locate the cellspacing and the cellpadding attributes for the table. The code will look similar to the following:
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" width="100%" id="AutoNumber1">
- Change the cellpadding and cellspacing attribute values, so that your code looks similar to the following:
<table border="1" cellpadding="1" cellspacing="2" style="border-collapse: collapse" width="100%" id="AutoNumber1">
- Switch back to Normal view.