Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions files/en-us/web/html/reference/elements/body/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,23 +79,21 @@ This element includes the [global attributes](/en-US/docs/Web/HTML/Reference/Glo
- : Background color for the document.
Use the CSS {{cssxref("background-color")}} property instead.
- `bottommargin` {{deprecated_inline}}
- : The margin of the bottom of the body.
Use the CSS {{cssxref("margin-bottom")}} property (or the logical {{cssxref("margin-block-end")}} property) instead.
- : Ignored.
- `leftmargin` {{deprecated_inline}}
- : The margin of the left of the body.
Use the CSS {{cssxref("margin-left")}} property (or the logical {{cssxref("margin-inline-start")}} property) instead.
- : The margin of the left and right of the body.
Use the CSS {{cssxref("margin-left")}} and {{cssxref("margin-right")}} properties (or the logical {{cssxref("margin-inline")}} property) instead.
- `link` {{deprecated_inline}}
- : Color of text for unvisited hypertext links.
Use the CSS {{cssxref("color")}} property in conjunction with the {{cssxref(":link")}} pseudo-class instead.
- `rightmargin` {{deprecated_inline}}
- : The margin of the right of the body.
Use the CSS {{cssxref("margin-right")}} property or the logical {{cssxref("margin-inline-end")}} property) instead.
- : Ignored.
- `text` {{deprecated_inline}}
- : Foreground color of text.
Use the CSS {{cssxref("color")}} property instead.
- `topmargin` {{deprecated_inline}}
- : The margin of the top of the body.
Use the CSS {{cssxref("margin-top")}} property (or the logical {{cssxref("margin-block-start")}} property) instead.
- : The margin of the top and bottom of the body.
Use the CSS {{cssxref("margin-top")}} and {{cssxref("margin-bottom")}} properties (or the logical {{cssxref("margin-block")}} property) instead.
- `vlink` {{deprecated_inline}}
- : Color of text for visited hypertext links.
Use the CSS {{cssxref("color")}} property in conjunction with the {{cssxref(":visited")}} pseudo-class instead.
Expand Down