Reputation: 46420
My apps all use bootstrap 5 css framework, and I'd rather not change that. If I want to use MudBlazor can I get away from materialize and still use bootstrap?
Upvotes: 8
Views: 2296
Reputation: 1601
Yes, you can use Bootstrap with MudBlazor controls
add bootstap cdn link into index.cshtm;
or index.html
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
Upvotes: 0