Reputation: 33
I am using "btn-info" class but for some reason the button is not getting rounded and designed properly. I don,t have any css for this class. I am using it inside a div which doesn't have a class and is inside a 'container' div. I get the blue color for the button and nothing more.
Upvotes: 1
Views: 4616
Reputation: 190
It can still be usefull to someone : rounded-circle
now can make the trick.
See bootsrap doc
class="btn btn-sm btn-success rounded-circle"
Upvotes: 1
Reputation: 16536
You have to use btn-info
together with btn
. E.g.:
<button type="button" class="btn btn-info">Info</button>
Upvotes: 6