I am learning Bootstrap and I found the following. I was looking for totally round buttons, I took the reference of this link
and later I tried to do it with a bootstrap code:
----- HTML:
<button type="button" class="btn btn-success">con boostrap</button>
----- CSS:
.btn{
border-radius: 20px;
width: 20px;
height: 20px;
}
But to copy both, both doing it with html and bootstrap found the following:
After seeing that on the jsfiddle.net website if the html was playing well I decided to remove the link with bootstrap from the head to see if my html would look the same as in jsfiddle.net and it was all right, it looked perfect ( except the bootstrap code obviously).
Therefore, the fault is in the bootstrap cdn understand me.
My question is, what is done in these cases? I want to continue working with Bootstrap, but I do not want to find mistakes like these again and to think that something bad is happening.