зеркало из https://github.com/telerik/blazor-docs.git
1.3 KiB
1.3 KiB
title | description | type | page_title | slug | tags | res_type |
---|---|---|---|---|---|---|
Add Badge to Container With No Children | How to add a Telerik Badge to a container that cannot have children. | how-to | How To Add a Badge to a Container that Cannot Have Children | kb-badge-container-no-children | telerik, badge, avatar, container | kb |
Environment
Product | Badge for Blazor |
Description
How to add the Telerik Badge to the [Telerik Avatar component]({%slug avatar-overview%}) or another container that cannot have child elements.
Solution
To add the Badge to the Avatar component or any other container that cannot have children, you need to wrap both the Badge and the container in an HTML element with the position: relative
, overflow: visible;
, and display: inline-block;
CSS styles.
caption Add the Telerik Badge to the Avatar component
<div style="position: relative; overflow: visible; display: inline-block;">
<TelerikAvatar Type="AvatarType.Text">
JD
</TelerikAvatar>
<TelerikBadge ThemeColor="primary"
VerticalAlign="@BadgeVerticalAlign.Bottom"
HorizontalAlign="@BadgeHorizontalAlign.End"
Size="sm">
Busy
</TelerikBadge>
</div>