Skip to content

Commit

Permalink
Deleted removed values (#32322)
Browse files Browse the repository at this point in the history
* Deleted removed values

As values were removed 16 years ago there is no need to mention their existence on MDN

* Removed deleted values from definition
  • Loading branch information
Akindin authored Feb 18, 2024
1 parent b64690b commit 4767ebf
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions files/en-us/web/css/-moz-float-edge/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ The non-standard **`-moz-float-edge`** [CSS](/en-US/docs/Web/CSS) property speci

```css
/* Keyword values */
-moz-float-edge: border-box;
-moz-float-edge: content-box;
-moz-float-edge: margin-box;
-moz-float-edge: padding-box;

/* Global values */
-moz-float-edge: inherit;
Expand All @@ -29,14 +27,10 @@ The non-standard **`-moz-float-edge`** [CSS](/en-US/docs/Web/CSS) property speci

### Values

- `border-box`
- : The height and width properties include the content, padding and border but not the margin.
- `content-box`
- : The height and width properties include the content, but not the padding, border or margin.
- `margin-box`
- : The height and width properties include the content, padding, border and margin.
- `padding-box`
- : The height and width properties include the content and padding but not the border or margin.

## Formal definition

Expand All @@ -46,7 +40,7 @@ The non-standard **`-moz-float-edge`** [CSS](/en-US/docs/Web/CSS) property speci

```plain
-moz-float-edge =
border-box | content-box | margin-box | padding-box
content-box | margin-box
```

## Examples
Expand Down

0 comments on commit 4767ebf

Please sign in to comment.