Bootstrap圆形按钮

Saa*_*ani 1 javascript css twitter-bootstrap

我正在尝试创建圆形按钮,Bootstrap但它不能正常工作.这是我在做的事情:

<button type="button" class="btn btn-default btn-circle">4</button>
Run Code Online (Sandbox Code Playgroud)

它显示的结果如下:

我引用了这个网站.我的版本bootstrap3.3.5.有帮助吗?

Ami*_*ngh 6

就这样做..

CSS

.btn-circle {
 border-radius: 50%;
}
Run Code Online (Sandbox Code Playgroud)