Quantcast
Channel: Active questions tagged blazor - Stack Overflow
Viewing all articles
Browse latest Browse all 4840

How do to add padding to a Bootstrap badge?

$
0
0

I have the following code to add badges:

@foreach (var item in items){<span class="badge badge-secondary badge-larger">@item.Name</span>}

And the following css:

.badge.badge-larger {    padding-right: 5px;    font-size: 0.9em;}

The size is being applied. However I can't seem to add padding to the right.

What is the correct way to add padding to badges?


Viewing all articles
Browse latest Browse all 4840

Trending Articles