How to place 2 <div>'s next to eachother instead of below eachother in Blazor SyncFusion Card Component?
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!
.e-card-header-caption { display: flex; flex-direction: row; }