Search found 2 matches

by pmnielsen
Thu Nov 25, 2021 9:54 pm
Forum: General
Topic: Thin white border around full width table when saved as web page
Replies: 2
Views: 2940

Re: Thin white border around full width table when saved as web page

The only solution I have found so far is to apply an external CSS with the following code. It removes ALL bordering white space around full width banner images, etc.

body {
margin: 0 0;
}

img {
max-width: 100%;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}

The ...
by pmnielsen
Wed Nov 24, 2021 6:36 am
Forum: General
Topic: Thin white border around full width table when saved as web page
Replies: 2
Views: 2940

Thin white border around full width table when saved as web page

I have created an RTF document with the intention of saving as a webpage. At the top is a page-wide, single column and row table containing a banner image and nothing else. All margins are set to "0". Table width 100%. Picture "inline". Zoom is "to fit".

However, when viewing the HTML page in a ...