bootstrap
学习bootstrap中的响应式图片、表单、边框表格和各种按钮暂时没有遇到问题
响应式图片代码:
<img class="img-thumbnail" src="-23934fff09c48c57.jpg"/>//将图片设为“字母图”
表单代码:
<div class="div1">
<form role="form" class="form-inline">
<label for="a">账号</label>
<input type="text" class="form-control" id="a" placeholder="请输入账号"/><br/><br/>
<label for="b">密码</label>
<input type="password" class="form-control" id="b" placeholder="请输入密码"/><br/><br/>
<label for=""></label>
<input type="checkbox" value="">忘记密码</input>
<input type="checkbox" value="" >记住密码</input>
</br></br>
<label for="r"></label>
<input type="button" value="登录 " class="btn btn-primary" id="button"/>
<label for="w"></label>
<input type="button" value="注册" class="btn btn-primary" id="button2">
</textarea>
</form>
</div>
边框表格代码:
<table class="table table-bordered table-hover">
<tr>
<td>编号</td>
<td>姓名</td>
<td>性别</td>
</tr>
<tr class="default">
<td>001</td>
<td>刘茜</td>
<td>女</td>
</tr>
</table>