久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      bootstrap表單怎么居中

      Bootstrap通過一些簡單的 HTML 標(biāo)簽和擴(kuò)展的類即可創(chuàng)建出不同樣式的表單。

      bootstrap表單怎么居中

      Bootstrap提供了多種表單布局,不過我們最常用的就是表單居中,也叫水平表單。

      水平表單與其他表單不僅標(biāo)記的數(shù)量上不同,而且表單的呈現(xiàn)形式也不同。(推薦學(xué)習(xí):Bootstrap視頻教程)

      如需創(chuàng)建一個水平布局的表單,請按下面的幾個步驟進(jìn)行:

      向父 <form> 元素添加 class .form-horizontal。

      把標(biāo)簽和控件放在一個帶有 class .form-group 的 <div> 中。

      向標(biāo)簽添加 class .control-label。

      實(shí)例:

      <!DOCTYPE html> <html> <head> 	<meta charset="utf-8">  	<title>Bootstrap 實(shí)例 - 水平表單</title> 	<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">   	<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> 	<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body>  <form class="form-horizontal" role="form"> 	<div class="form-group"> 		<label for="firstname" class="col-sm-2 control-label">名字</label> 		<div class="col-sm-10"> 			<input type="text" class="form-control" id="firstname"  				   placeholder="請輸入名字"> 		</div> 	</div> 	<div class="form-group"> 		<label for="lastname" class="col-sm-2 control-label">姓</label> 		<div class="col-sm-10"> 			<input type="text" class="form-control" id="lastname"  				   placeholder="請輸入姓"> 		</div> 	</div> 	<div class="form-group"> 		<div class="col-sm-offset-2 col-sm-10"> 			<div class="checkbox"> 				<label> 					<input type="checkbox"> 請記住我 				</label> 			</div> 		</div> 	</div> 	<div class="form-group"> 		<div class="col-sm-offset-2 col-sm-10"> 			<button type="submit" class="btn btn-default">登錄</button> 		</div> 	</div> </form>  </body> </html>

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號-2    滬公網(wǎng)安備31011702889846號