I want to style my tab headers with something similar to this, but it does not compile:
<h2>Telerik Tab Strip</h2>
<TelerikTabStrip TabPosition="Telerik.Blazor.TabPosition.Top">
<TabStripTab Class="WeirdTab" Title="First">
First tab content.
</TabStripTab>
<TabStripTab Title="Second">
Second tab content.
</TabStripTab>
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
</TelerikTabStrip>
<style>
.WeirdTab {
color: red;
}
</style>
While I can style the content of the tabs in the tabs themlselves (see below) I'd like to be able to style the headers too
<h2>Telerik Tab Strip</h2>
<TelerikTabStrip TabPosition="Telerik.Blazor.TabPosition.Top">
<TabStripTab Title="First">
<div class="WeirdTab">
First tab content.
</div>
</TabStripTab>
<TabStripTab Title="Second">
Second tab content.
</TabStripTab>
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
</TelerikTabStrip>
<style>
.WeirdTab {
color: red;
}
</style>