请问为什么radion和checkbox的inline总是对不齐呢?
<!doctype html> <html> <head> <meta 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"> <h3>案例1</h3> <div class="checkbox checkbox-inline"> <label> <input type="checkbox" value=""> 记住密码 </label> </div> <div class="checkbox checkbox-inline"> <label> <input type="checkbox" value=""> 记住密码 </label> </div> <div class="checkbox checkbox-inline"> <label> <input type="checkbox" value=""> 记住密码 </label> </div> <br> <div class="radio radio-inline"> <label> <input type="radio" name="optionsRadios" id="optionsRadios1" value="love" > 喜欢 </label> </div> <div class="radio radio-inline"> <label> <input type="radio" name="optionsRadios" id="optionsRadios2" value="hate"> 不喜欢 </label> </div> <div class="radio radio-inline"> <label> <input type="radio" name="optionsRadios" id="optdionsRadios2" value="hate"> 不喜欢 </label> </div> </form> </body> </html>
老师:为什么显示出来时第一个和后面的对不齐呢?如图: