这段时间因为公司限制域账户登录,在win7下无法上网,就切换到xp系统了,逐渐开始用office2007来发blog,还好基本上我在2010中用到的功能2007都有。
今天在动态生成htm文件时发现自己以前的htm相关知识都忘了,所以要边用边搜索,顺便总结下。
因为用table显示查询统计的表格,所以必须要让table中空的单元格可以显示出边框来,尝试过有两种方法:1.<td></td>中间加上 ,注意不能是直接空格,必须用 才可以;2.在table属性中加入frame="border"。 表格边框的显示与隐藏,是可以用frame参数来控制的。请注意它只控制表格的边框图,而不影晌单元格。
只显示上边框 <table frame=above><br>
只显示下边框 <table frame=below> <br>
只显示左、右边框 <table frame=vsides><br>
只显示上、下边框 <table frame=hsides><br>
只显示左边框 <table frame=lhs><br>
只显示右边框 <table frame=rhs><br>
不显示任何边框 <table frame=void></td>
<table>标签的属性设置 | ||||||||||
带边框的表格: |
| |||||||||
不带边框的表格: |
| |||||||||
边框尺寸设置: <table border=#> #=边框粗度 <table border=10> <tr><th>Food</th><th>Drink</th><th>Sweet</th> <tr><td>A</td><td>B</td><td>C</td> </table> |
| |||||||||
<table border width=# height=#>width:宽度,height:高度,#=象素 |
| |||||||||
<table border cellspacing=#> #=象素 表元间隙设置: |
| |||||||||
<table border cellpadding=#> #=象素 |
| |||||||||
<table align=#> #=left,right,center 设置表格在网页中的布局位置: <table align="left" border> <tr><th>Food</th><th>Drink</th><th>Sweet</th> <tr><td>A</td><td>B</td><td>C</td> </table> My favorites...<br> cookies, chocolates, and more. |
My favorites... | |||||||||
表格的标题 <table border> <caption align=center>Lunch</caption> <tr><th>Food</th><th>Drink</th><th>Sweet</th> <tr><td>A</td><td>B</td><td>C</td> </table> |
| |||||||||
表格边框的色彩 <table cellspacing=5 border=5 bodercolor=#ffaa00> <tr><th>Food</th><th>Drink</th><th>Sweet</th> <tr><td>A</td><td>B</td><td>C</td> </table> |
| |||||||||
表格边框色彩的亮度控制 <table bordercolorlight=blue bordercolordark=Maroon> <tr><th>Food</th><th>Drink</th><th>Sweet</th> <tr><td>A</td><td>B</td><td>C</td> </table> |
|
注意htm中的颜色只能用#RRGGBB表示,比如说黑色就是#000000,而不能像delphi中那样写成clBlack(可能没有定义宏常量的原因)。