Skip to content

Commit 44ad4e3

Browse files
authored
docs(Badge): Add Inline Position (#2935)
1 parent 013145f commit 44ad4e3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/badge/position.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ The Position parameter accepts a member of the BadgePosition enum and controls t
2121
| Enum member | Description |
2222
|---------------|--------|
2323
| `Edge` <br /> (default) | The center of the Badge is at a corner of the parent container. |
24+
| `Inline` | The Badge renders as part of the normal content flow of the web page. The `HorizontalAlign` and `VerticalAlign` parameters have no effect with `Inline` `Position`. |
2425
| `Inside` | The Badge renders entirely inside the parent container. |
2526
| `Outside` | The Badge renders entirely outside the parent container. |
2627

@@ -85,6 +86,7 @@ The following example lets you experiment with the available settings that contr
8586
private List<BadgePosition> Positions { get; set; } = new List<BadgePosition>()
8687
{
8788
BadgePosition.Edge,
89+
BadgePosition.Inline,
8890
BadgePosition.Inside,
8991
BadgePosition.Outside
9092
};
@@ -107,4 +109,4 @@ The following example lets you experiment with the available settings that contr
107109

108110
## See Also
109111

110-
* [Live Demo: Badge Position](https://demos.telerik.com/blazor-ui/badge/position)
112+
* [Live Demo: Badge Position](https://demos.telerik.com/blazor-ui/badge/position)

0 commit comments

Comments
 (0)