bootstrap学習ノート-CSS-フォーム


<!doctype html>
<html>
<head>
<meta charset="gbk">
<title>    </title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link href="../css/bootstrap.min.css" rel="stylesheet">
<link href="../css/bootstrap-responsive.min.css" rel="stylesheet">
</head>
<body class="container">
<h1 class="page-header">  <small>    </small></h1>
<label for="username">   </label><input id="username" type="text" placeholder="     " class="span10">
<p class="help-block">      </p>
<!--
placeholder    
span10      
-->
<div class="input-prepend">
<span class="add-on">&yen;</span><input type="text"><!--          -->
</div>
<br>
<label>  </label>
<div class="input-append">
<input type="text"><span class="add-on">.00</span><!--          -->
</div>

<label>  </label>
<div class="input-append">
<input type="text"><button type="button" class="btn" >  </button>
</div>
</body>
</html>