syncfusion-react-cards
Implementing React Card Component
The Syncfusion React Card component is a lightweight, flexible container for displaying organized content with support for headers, images, dividers, action buttons, and integrated components.
When to Use This Skill
Use this skill when you need to:
- Create simple or complex card-based layouts
- Build a card with header, image, and action sections
- Display content in a card with separators or dividers
- Add action buttons (horizontal or vertical) to cards
- Create horizontal card layouts with stacked content
- Embed other Syncfusion components (ListView, Charts, etc.) inside cards
- Customize card appearance with images, titles, and positioning
- Build responsive card-based user interfaces
Navigation Guide
Follow this guide based on what you're implementing:
Getting Started
📄 Read: references/getting-started.md
- Package installation and setup
- Basic card structure and CSS imports
- Simple card examples
- Required dependencies
Card Structure & Headers
📄 Read: references/card-structure-headers.md
- Card root element and classes
- Header structure with title and subtitle
- Header images and positioning
- Content sections and organization
Images, Titles & Dividers
📄 Read: references/images-titles-dividers.md
- Adding images to cards
- Image titles and overlay effects
- Dividers for section separation
- Title positioning and customization
Action Buttons
📄 Read: references/action-buttons.md
- Adding buttons and links to cards
- Horizontal button layout (default)
- Vertical button alignment
- Icon buttons and styling
Layouts & Advanced
📄 Read: references/layouts-customization.md
- Horizontal card layout
- Stacked sections within cards
- Image title position classes
- CSS positioning and styling
Embedding Components
📄 Read: references/embedding-components.md
- Integrating ListView with cards
- Embedding charts and data components
- Dynamic content patterns
- Practical use cases
Quick Start Example
Basic Card with Header and Content:
import React from 'react';
import '@syncfusion/ej2-layouts/styles/tailwind3.css';
export default function BasicCard() {
return (
<div className="e-card">
<div className="e-card-header">
<div className="e-card-header-caption">
<div className="e-card-header-title">Card Title</div>
<div className="e-card-sub-title">Subtitle</div>
</div>
</div>
<div className="e-card-content">
This is the main content of the card. Add any HTML content here.
</div>
</div>
);
}
Card with Action Buttons:
import React from 'react';
export default function CardWithButtons() {
return (
<div className="e-card">
<div className="e-card-header-title">Product Card</div>
<div className="e-card-content">
High-quality product description goes here.
</div>
<div className="e-card-actions">
<button className="e-card-btn">View</button>
<button className="e-card-btn">Buy Now</button>
<button className="e-card-btn">Share</button>
</div>
</div>
);
}
Horizontal Layout Card:
import React from 'react';
export default function HorizontalCard() {
return (
<div className="e-card e-card-horizontal" style={{ width: '400px' }}>
<img src="./image.png" alt="Card" style={{ height: '180px' }} />
<div className="e-card-stacked">
<div className="e-card-header">
<div className="e-card-header-caption">
<div className="e-card-header-title">Title</div>
</div>
</div>
<div className="e-card-content">
Content displayed vertically within horizontal layout
</div>
</div>
</div>
);
}
Common Patterns
Pattern 1: User Profile Card
Combine header images, titles, and action buttons to create profile cards for user listings or team pages.
<div className="e-card">
<div className="e-card-header">
<div className="e-card-header-image" style={{ backgroundImage: 'url(./profile.jpg)', width: '60px', height: '60px', borderRadius: '50%' }} />
<div className="e-card-header-caption">
<div className="e-card-header-title">John Doe</div>
<div className="e-card-sub-title">Product Manager</div>
</div>
</div>
<div className="e-card-content">
Experienced in building user-centric products.
</div>
<div className="e-card-actions">
<button className="e-card-btn">Message</button>
<button className="e-card-btn">Follow</button>
</div>
</div>
Pattern 2: Product Card with Image
Use card images and titles for product listings with pricing and action buttons.
<div className="e-card">
<div className="e-card-image" style={{ backgroundImage: 'url(./product.jpg)', height: '200px' }}>
<div className="e-card-title">Product Name</div>
</div>
<div className="e-card-content">
<p>$99.99</p>
<p>High-quality product with excellent features</p>
</div>
<div className="e-card-actions">
<button className="e-card-btn">Add to Cart</button>
<button className="e-card-btn">Buy Now</button>
</div>
</div>
Pattern 3: Blog Post Card
Combine headers, dividers, and content sections to create blog post cards.
<div className="e-card">
<div className="e-card-header-title">Blog Post Title</div>
<div className="e-card-sub-title">Published on March 26, 2026</div>
<div className="e-card-separator" />
<div className="e-card-content">
Blog post excerpt and content goes here...
</div>
<div className="e-card-actions">
<button className="e-card-btn">Read More</button>
<button className="e-card-btn">Share</button>
</div>
</div>
Key CSS Classes
| Class | Purpose |
|---|---|
e-card |
Root container for the card |
e-card-header |
Header section container |
e-card-header-caption |
Wrapper for title and subtitle |
e-card-header-title |
Main title text |
e-card-sub-title |
Subtitle text |
e-card-header-image |
Header image element |
e-card-image |
Full-width card image |
e-card-title |
Title overlay on image |
e-card-content |
Main content section |
e-card-actions |
Button container |
e-card-btn |
Individual button styling |
e-card-vertical |
Vertical button alignment |
e-card-separator |
Divider element |
e-card-horizontal |
Horizontal card layout |
e-card-stacked |
Vertical stack within horizontal |
e-card-corner |
Rounded corners on images |
Essential Setup
-
Install package:
npm install @syncfusion/ej2-layouts -
Import CSS:
@import '@syncfusion/ej2-layouts/styles/tailwind3.css'; -
Create card element:
- Add
e-cardclass to root div - Add header, content, images, or buttons as needed
- Apply additional classes for layout and styling
- Add
Common Use Cases
- Dashboard cards: Display key metrics or data summaries
- Product listings: Showcase products with images and prices
- Team members: Display user profiles and contact info
- Blog posts: Show article previews with meta information
- Feature highlights: Present features with descriptions
- Data reports: Organize tabular or list data in cards
- Notification cards: Display alerts or messages
- Settings cards: Group related settings together
Next Steps: Choose a reference based on your specific need, then implement your card layout following the examples and patterns provided.
More from syncfusion/react-ui-components-skills
syncfusion-react-grid
Implements Syncfusion React Grid component for feature-rich data tables and grids. Use this when working with data display, sorting, filtering, grouping, aggregates, editing, or exporting. This skill covers grid configuration, CRUD operations, virtual scrolling or infinite scrolling, hierarchy grids, state persistence, and advanced data management features for data-intensive applications.
120syncfusion-react-rich-text-editor
Implements the Syncfusion React Rich Text Editor (RichTextEditorComponent) from ej2-react-richtexteditor, supporting HTML (WYSIWYG) and Markdown editing. Use this skill for toolbar configuration, image/video/audio insertion, paste cleanup, AI assistant integration, emoji picker, slash menu, mentions, import/export Word/PDF, form validation, and source code view in React applications.
116syncfusion-react-themes
Use this skill when users need to apply themes, customize appearance, switch dark mode, use CSS variables, configure icons, or modify visual styling for Syncfusion React components. Covers icon library, size modes, and Theme Studio integration.
114syncfusion-react-common
Common utilities and features for Syncfusion React components. Use this skill when the user needs to implement animations, drag-and-drop, state persistence, RTL support, localization, globalization, security, templates, and advanced features for Syncfusion React components.
114syncfusion-react-scheduler
Implement Syncfusion React Scheduler component for calendar, event scheduling, and appointment management. Use this when building scheduling systems, calendar applications, booking systems, or time management interfaces. Covers all scheduler views (Day, Week, Month, Timeline, Agenda, Year), data binding, resource scheduling, recurring events, CRUD operations, drag-and-drop scheduling, customization, accessibility, and advanced features.
114syncfusion-react-treegrid
Implements Syncfusion React TreeGrid for hierarchical data with sorting, filtering, editing, exporting, paging, virtual scrolling, and advanced features. Supports configuration, CRUD, aggregates, templates, state persistence, and performance optimization in React applications.
112