Page Margins, Borders and Padding

Page Margins, Borders and Padding

Page spacing is controlled using CSS styles applied to the document.

The main properties are:

  • margin
  • border
  • padding

These define how content is positioned within the page.


How it works

These properties wrap around the page content in the following order:

  • margin → outer spacing (towards page edge)
  • border → visible boundary (optional)
  • padding → inner spacing (around content)

This allows you to control:

  • how far content is from the page edge
  • whether a border is visible
  • how much space surrounds the content

Common scenarios

Full-page content

To let content fill the entire page:

  • set margin, border, and padding to 0

Adding safe spacing

To prevent content from touching page edges:

  • increase padding or margin

Using borders

Borders can be used for:

  • document framing
  • visual separation

Changing margins, borders, and padding

These settings are configured in **Styles Mode**.

  1. Click the Styles button
  2. Edit the CSS for the body element

Switching Eledo editor to Style editor


Example

Default document style:

body {
    color: black;
    background-color: white;
    font-size: 16pt;
    font-family: Liberation Sans;
    padding: 32pt;
}

Remove all spacing:

body {
    margin: 0;
    border: 0;
    padding: 0;
}

Important notes

  • Styles apply separately to Main and Background documents
  • Incorrect margins may cause content to overlap with background elements
  • Changes affect the entire page layout

Related topics



Was this article helpful?

Yes

No