不加 radio-inline也可以水平啊
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>表单控件(复选框和单选按钮水平排列)</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
</head>
<body>
<form role="form">
<div class="form-group">
<label class="radio-inline">
<input type="radio" name="sex">男人
</label>
<label class="radio-inline">
<input type="radio" name="sex">女人
</label>
<label class="radio-inline">
<input type="radio" name="sex">中性
</label>
</div>
<div class="form-group">
<label>
<input type="checkbox" >男人
</label>
<label>
<input type="checkbox" >女人
</label>
<label>
<input type="checkbox" >中性
</label>
</div>
</form>
</body>
</html>