Skip to content

Commit

Permalink
Typo fix in index.md (#31995)
Browse files Browse the repository at this point in the history
Typo correction in example code's explanation.
  • Loading branch information
thecipherninja committed Jan 30, 2024
1 parent afaf3ae commit 9760ffb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/en-us/web/css/basic-shape/polygon/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Applying those coordinates to the CSS {{cssxref("clip-path")}} property using th
clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
```

This would create a rectangle shape the size of its parent content by specifying the coordinates of its four corners: top-left (`0% 0%`), top-right (`100% 0%`), bottom-right (`100% 100%`), and bottom-right (`0% 100%`).
This would create a rectangle shape the size of its parent content by specifying the coordinates of its four corners: top-left (`0% 0%`), top-right (`100% 0%`), bottom-right (`100% 100%`), and bottom-left (`0% 100%`).

## Formal syntax

Expand Down

0 comments on commit 9760ffb

Please sign in to comment.