I'm using the Card component in SyncFusion blazor, this component has a title and a subtitle property. In default situation those are placed below eachother:
The following css is used:
Title:
Sub title:
However I'm trying to place these items next to eachother like this:
Does anyone know the right css for this?
Thanks in advance!
You can specify display : inline for e-card-header-title and e-card-sub-title class in css style to display title and subtitle in same row.
Snippet
.e-card .e-card-header .e-card-header-caption .e-card-header-title {
display: inline;
}
.e-card .e-card-header .e-card-header-caption .e-card-sub-title {
display: inline;
}
Screenshot
Sample https://www.syncfusion.com/downloads/support/directtrac/general/ze/Subtitle1482508206.zip
Thanks, Durga G