公式サイト

丸ボタンにする

参考サイト:Bootstrap3 : アイコン用の丸いボタン。「Circle Button」コミット其二。@Bootsnipp


	<style>
	.btn-circle {
	width: 30px;
	height: 30px;
	text-align: center;
	padding: 6px 0;
	font-size: 12px;
	line-height: 1.428571429;
	border-radius: 15px;
	}
	.btn-circle.btn-lg {
	width: 50px;
	height: 50px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 25px;
	}
	.btn-circle.btn-xl {
	width: 70px;
	height: 70px;
	padding: 10px 16px;
	font-size: 24px;
	line-height: 1.33;
	border-radius: 35px;
	}
	</style>

	

bootstrapのbtnセレクタと組み合わせて使用する
	<button type="button" class="btn btn-default btn-circle"><i class="glyphicon glyphicon-ok"></i></button>
	


コンテキストカラー

text-muted
text-primary
text-success
text-info
text-warning
text-danger

ラジオボタン



ソースコード

	<div class="btn-group" >
		<label class="btn btn-primary"><input type="radio" name="test_c"  checked> ボタン1</label>
		<label class="btn btn-primary"><input type="radio" name="test_c"> ボタン2</label>
		<label class="btn btn-primary"><input type="radio" name="test_c" > ボタン3</label>
		<label class="btn btn-primary"><input type="radio" name="test_c" > ボタン4</label>
	</div>