博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bootstrap11-基本的表格布局
阅读量:7027 次
发布时间:2019-06-28

本文共 700 字,大约阅读时间需要 2 分钟。

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>bootstrap11</title>

<link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">  

</head>

<body>

<div class="container">

<table class="table">

<caption>基本的表格布局</caption>

<thead>

    <tr>

       <th>名称</th>

       <th>城市</th>

    </tr>

</thead>

<tbody>

    <tr>

       <td>Tanmay</td>

       <td>Bangalore</td>

    </tr>

    <tr>

       <td>Sachin</td>

       <td>Mumbai</td>

    </tr>

</tbody>

</table>

</div>

    <script src="http://cdn.static.runoob.com/libs/jquery/2.1.1/jquery.min.js"></script>

   <script src="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/js/bootstrap.min.js"></script>

</body>

</html>

本文转自  素颜猪  51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1895679

转载地址:http://kqpxl.baihongyu.com/

你可能感兴趣的文章
IT民工,去除眼部细纹的24小时法则(熬夜的你一定要试试哦)
查看>>
mysql having,group by查询去除重复记录
查看>>
不要迷信红黑树 哈希是一切
查看>>
IT兄弟连 Java语法教程 Java语言的跨平台特性
查看>>
Bootstrap_遮罩提示
查看>>
常见的Java问题排查方法
查看>>
Eclipse中普通java项目转成Web项目
查看>>
Android文本输入框EditText方法说明和属性
查看>>
yii2文件上传
查看>>
vue ‘Couldn't find preset "stage-0" relative to directory’
查看>>
CSS3媒体查询的部分重要属性
查看>>
×××监控脚本
查看>>
使用组策略禁用已安装的设备
查看>>
员工应“区别对待”?
查看>>
(完美)华为畅玩5 CUN-AL00的Usb调试模式在哪里开启的步骤
查看>>
Vue-cli 3.0自定义脚手架
查看>>
linux下查看CPU内存等信息
查看>>
Windows Server 2012 体验篇一“安装活动目录”
查看>>
CentOS配置静态IP
查看>>
CentOS下源码安装Apache2.4+PHP5.4+MySQL5.5
查看>>