最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Bootstrap 实现表格样式、表单布局的实例代码

来源:动视网 责编:小采 时间:2020-11-27 22:02:47
文档

Bootstrap 实现表格样式、表单布局的实例代码

Bootstrap 实现表格样式、表单布局的实例代码: 1. 表格的一些样式 举例: <!DOCTYPE html> <html> <head> <meta http-equiv=Content-Type content=text/html; charset=utf-8/> <title>My Test bootstrap<
推荐度:
导读Bootstrap 实现表格样式、表单布局的实例代码: 1. 表格的一些样式 举例: <!DOCTYPE html> <html> <head> <meta http-equiv=Content-Type content=text/html; charset=utf-8/> <title>My Test bootstrap<


1. 表格的一些样式

举例:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>My Test bootstrap</title>
 <link rel="stylesheet" href="./css/bootstrap.min.css"> 
 <script type="text/javascript" src="./js/bootstrap.min.js"></script>
</head>
<body>
 <table class="table table-striped">
 <caption>这是一个测试表格</caption>
 <thead>
 <tr>
 <th>姓名</th>
 <th>年龄</th>
 <th>地区</th>
 </tr>
 </thead>
 <tbody>
 <tr>
 <td>小胡子</td>
 <td>26</td>
 <td>陕西</td>
 </tr>
 <tr>
 <td>大胡子</td>
 <td>26</td>
 <td>北京</td>
 </tr>
 </tbody>
</table>
</body>
</html>

页面效果:

2. 表格行或单元格的样式

举例:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>My Test bootstrap</title>
 <link rel="stylesheet" href="./css/bootstrap.min.css"> 
 <script type="text/javascript" src="./js/bootstrap.min.js"></script>
</head>
<body>
 <table class="table table-striped">
 <caption>这是一个测试表格</caption>
 <thead>
 <tr>
 <th>姓名</th>
 <th>年龄</th>
 <th>地区</th>
 </tr>
 </thead>
 <tbody>
 <tr class="info">
 <td>小胡子</td>
 <td>26</td>
 <td>陕西</td>
 </tr>
 <tr class="warning">
 <td>大胡子</td>
 <td>26</td>
 <td>北京</td>
 </tr>
 </tbody>
</table>
</body>
</html>

页面效果:

3. 表单布局

(1)垂直表单:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>My Test bootstrap</title>
 <link rel="stylesheet" href="./css/bootstrap.min.css"> 
 <script type="text/javascript" src="./js/bootstrap.min.js"></script>
</head>
<body>
<form role="form">
 <div class="form-group">
 <label for="name">姓名</label>
 <input type="text" class="form-control" id="name" placeholder="请输入姓名">
 </div>
 <div class="form-group">
 <label for="inputfile">选择文件</label>
 <input type="file" id="inputfile">
 </div>
 <button type="submit" class="btn btn-default">提交</button>
</form>
</body>
</html>

效果:

(2)内联表单:它的所有元素是内联的,向左对齐的,标签是并排的

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>My Test bootstrap</title>
 <link rel="stylesheet" href="./css/bootstrap.min.css"> 
 <script type="text/javascript" src="./js/bootstrap.min.js"></script>
</head>
<body>
<form role="form" class="form-inline">
 <div class="form-group">
 <label for="name">姓名</label>
 <input type="text" class="form-control" id="name" placeholder="请输入姓名">
 </div>
 <div class="form-group">
 <label for="inputfile">选择文件</label>
 <input type="file" id="inputfile">
 </div>
 <button type="submit" class="btn btn-default">提交</button>
</form>
</body>
</html>

效果:

(3)水平表单:水平表单与其他表单不仅标记的数量上不同,而且表单的呈现形式也不同

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>My Test bootstrap</title>
 <link rel="stylesheet" href="./css/bootstrap.min.css"> 
 <script type="text/javascript" src="./js/bootstrap.min.js"></script>
</head>
<body>
<form role="form" class="form-horizontal">
 <div class="form-group">
 <label for="name" class="col-sm-2 control-label">姓名</label>
 <div class="col-sm-10">
 <input type="text" class="form-control" id="name" placeholder="请输入姓名">
 </div>
 </div>
 <div class="form-group">
 <label for="inputfile" class="col-sm-2 control-label">选择文件</label>
 <div class="col-sm-10">
 <input type="file" id="inputfile">
 <div>
 </div>
 <div class="form-group">
 <div class="col-sm-12">
 <button type="submit" class="btn btn-default">提交</button>
 </div>
 </div>
</form>
</body>
</html>

效果:

总结

以上所述是小编给大家介绍的Bootstrap 实现表格样式、表单布局的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

文档

Bootstrap 实现表格样式、表单布局的实例代码

Bootstrap 实现表格样式、表单布局的实例代码: 1. 表格的一些样式 举例: <!DOCTYPE html> <html> <head> <meta http-equiv=Content-Type content=text/html; charset=utf-8/> <title>My Test bootstrap<
推荐度:
标签: 表格 代码 样式
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top