Markdown简介
Markdown简介: 可以使用网站自动生成表格,推荐http://pressbin.com/tools/excel_to_html_table/index.html 原文地址:http://www.ituring.com.cn/article/3452 添加属性: 颜色:BGCOLOR="#99CCFF",跨度:rowspan=4 colspan 第一级标题#,第二级## 以此类推 **标注** 注:这些都直接在td属性中添加<td ROWSPAN=4 BGCOLOR="#99CCFF">x86</td> 不够使用之后,注意每行的个数, 如果第一行添加了跨度2,那么第二行务必要少一行,因为第一行已经有一个跨度占据了第二行,依次类推 <table class="table table-bordered table-striped table-condensed"> 添加表头属性class 举例: #Version 1 my table **Date:2015-12-20** <table> <tr> <td>name</td> //第一行第一列 <td>string</td> //第一行第二列 <td>notes</td> //第一行第三列 </tr> <tr> <td rowspan=2>xiaoming</td> //第二行第一列,行跨度为2,所以占据了第三行的第一列 <td>xiao</td> //第二行第二列 <td>last name</td> //第二行第三列 </tr> <tr> <td>ming</td> //第二行第二列,其中第一列被“xiaoming”占据了,以为其跨度为2 <td>fist name</td> //第二行第三列 </tr> </table>
posted on 2015-11-21 16:33 Sanny.Liu-CV&&ML 阅读(265) 评论(0) 编辑 收藏 举报