e-link button appearance

Can you provide an example for changing text color and decoration (e.g., dotted underline) for an e-link button? Thank you.


1 Reply

YA YuvanShankar Arunagiri Syncfusion Team May 9, 2022 04:45 AM UTC

Hi Dave,


We can achieve your reported requirement by using the CSS style as shown in the code below.


[Index.razor]: 


@using Syncfusion.Blazor.Buttons

 

<SfButton CssClass="e-link">Link</SfButton>

 

<style>

    .e-btn.e-link {

        color: red !important;

        text-decoration-style: dotted !important;

    }

</style>


Could you please check the above link and get back to us, if you need any further assistance on this. 


Regards,

YuvanShankar A


Loader.
Up arrow icon