Skip to content

Commit 7a57e5c

Browse files
committed
983366: Updated the UG document for Card Component.
1 parent 10dfd1e commit 7a57e5c

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

blazor/card/action-buttons.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ documentation: ug
99

1010
# Action Buttons in Blazor Card Component
1111

12-
The Blazor Card component allows you to include and customize action buttons within its structure. Action buttons are typically placed in the `CardFooter` section of the Card. This document explains how to add these buttons and control their alignment.
12+
The Blazor Card component provides support for adding and customizing action buttons within its structure. Action buttons are typically placed in the `CardFooter` section of the Card. This document explains how to add these buttons and control their alignment.
1313

14-
Action buttons are rendered within the `<CardFooter>` section. You can define either a single button or multiple buttons directly inside the `CardFooterContent` of the `CardFooter` component. The `CardFooterContent` is a `RenderFragment` property that accepts any Blazor UI elements.
14+
Action buttons are rendered within the `CardFooter` section. A single button or multiple buttons can be defined directly inside the `CardFooterContent` of the `CardFooter` component. The CardFooterContent is a `RenderFragment` property that accepts any Blazor UI elements.
1515

1616
```cshtml
1717
@using Syncfusion.Blazor.Cards

blazor/card/card-image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ documentation: ug
1313

1414
## Images
1515

16-
The Blazor Card component allows you to include images within its structure using the [`CardImage`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardImage.html) component. You can add the `<CardImage>` component directly inside the `<SfCard>` element.
16+
The Blazor Card component supports the inclusion of images using the [`CardImage`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardImage.html) component. The element can be added directly within the structure to display an image.
1717

1818
N> By default, card images occupies full width of its parent element.
1919

@@ -30,7 +30,7 @@ The CardImage supports direct specification of the image source using its `Image
3030

3131
### Title
3232

33-
To apply custom CSS styles to an image within a `CardImage` component, you can define a CSS class and apply it using the `CssClass` property. This allows for advanced styling such as background images, specific sizing, or positioning.
33+
To apply custom CSS styles to an image within a `CardImage` component, define a CSS class and apply it using the `CssClass` property. This allows for advanced styling such as background images, specific sizing, or positioning.
3434

3535
```cshtml
3636
@using Syncfusion.Blazor.Cards

blazor/card/getting-started-with-web-app.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Getting Started with Blazor Card Component in a Web App
1111

12-
This section explains how to include the Syncfusion[Blazor Card](https://www.syncfusion.com/blazor-components/blazor-card) component in your Blazor Web App using [Visual Studio](https://visualstudio.microsoft.com/vs/) or Visual Studio Code.
12+
This section describes how to include the Syncfusion [Blazor Card](https://www.syncfusion.com/blazor-components/blazor-card) component in a Blazor Web App using [Visual Studio](https://visualstudio.microsoft.com/vs/) or Visual Studio Code.
1313

1414
{% tabcontents %}
1515

@@ -77,7 +77,7 @@ N> For more details on creating a **Blazor Web App** with various interactive mo
7777
If the Blazor Web App uses the `WebAssembly or Auto` render modes, ensure the Syncfusion<sup style="font-size:70%">&reg;</sup> Blazor component NuGet packages are installed in the client project.
7878

7979
* Press <kbd>Ctrl</kbd>+<kbd>`</kbd> to open the integrated terminal in Visual Studio Code.
80-
* Ensure you are in the project root directory where your `.csproj` file is located.
80+
* Ensure the terminal is open in the project’s root directory where your `.csproj` file is located.
8181
* Run the following commands to install the [Syncfusion.Blazor.Cards](https://www.nuget.org/packages/Syncfusion.Blazor.Cards) and [Syncfusion.Blazor.Themes](https://www.nuget.org/packages/Syncfusion.Blazor.Themes/) NuGet package and ensure all dependencies are installed.
8282

8383
{% tabs %}
@@ -225,7 +225,7 @@ N> If an **Interactivity Location** is set to `Global` and the **Render Mode** i
225225

226226
## Add Header and Content
227227

228-
Add the header by using [CardHeader](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardHeader.html) tag and add [Title](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardHeader.html#Syncfusion_Blazor_Cards_CardHeader_Title) and [SubTitle](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardHeader.html#Syncfusion_Blazor_Cards_CardHeader_SubTitle) in that tag. You can also add the content by using [CardContent](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardContent.html) tag.
228+
Add the header by using [CardHeader](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardHeader.html) tag and add [Title](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardHeader.html#Syncfusion_Blazor_Cards_CardHeader_Title) and [SubTitle](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardHeader.html#Syncfusion_Blazor_Cards_CardHeader_SubTitle) in that tag. To include content within the card, use the [CardContent](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardContent.html) tag.
229229

230230
{% tabs %}
231231
{% highlight cshtml %}

blazor/card/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
# Getting Started with Blazor Card Component
1313

14-
This section explains how to include the Syncfusion [Blazor Card](https://www.syncfusion.com/blazor-components/blazor-card) component in your Blazor WebAssembly App using Visual Studio or Visual Studio Code.
14+
This section explains how to integrate the Syncfusion [Blazor Card](https://www.syncfusion.com/blazor-components/blazor-card) component into a Blazor WebAssembly App using Visual Studio or Visual Studio Code.
1515

1616
To get started quickly with the Blazor Card component, watch this video or refer to the [GitHub sample](https://github.com/SyncfusionExamples/Blazor-Getting-Started-Examples/tree/main/Card) sample.
1717
{% youtube

blazor/card/header-content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The `CardContent` component is used to display the main textual or HTML content
7474

7575
### Image
7676

77-
The `CardContent` area is designed to flexibly host various HTML elements, including `<img>` tags. You can embed images directly within the `CardContent` to create rich and visually appealing layouts. Custom CSS can be applied to further style the image and content.
77+
The `CardContent` area is designed to flexibly host various HTML elements, including tags. Images can be embedded directly within the `CardContent` to create rich and visually engaging layouts. Custom CSS can be applied to style the image and content.
7878

7979
```cshtml
8080
@using Syncfusion.Blazor.Cards

blazor/card/horizontal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ By default, elements within the Blazor Card component are aligned vertically, ap
1313

1414
## Stacked Cards
1515

16-
Within a horizontally aligned card, you can group a set of elements to maintain a vertical stacking using the [`CardStacked`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardStacked.html) component. This component acts as a container, aligning its child elements vertically even within the horizontal context of the parent `SfCard`.
16+
In a horizontally aligned card, the [`CardStacked`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Cards.CardStacked.html) component can be used to group elements and maintain vertical stacking. This component acts as a container that aligns its child elements vertically, even within the horizontal layout of the parent `SfCard`.
1717

1818
The following example demonstrates a horizontal card where the image is displayed alongside a `CardStacked` section containing the header and content, which remain vertically aligned:
1919

blazor/card/style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
The Blazor Card component can be visually customized by overriding its default CSS styles. This document provides a list of common CSS classes and demonstrations on how to apply custom styles to various parts of the Card, such as its background, header, content, images, and action buttons.
1313

14-
For comprehensive theme generation across Syncfusion controls, you can also utilize our [Theme Studio](https://blazor.syncfusion.com/themestudio/?theme=material).
14+
For comprehensive theme generation across Syncfusion components, the [Theme Studio](https://blazor.syncfusion.com/themestudio/?theme=material) can be used to efficiently create and customize themes.
1515

1616
## Customizing the Card
1717

0 commit comments

Comments
 (0)