[IE兼容性]Table之边框
table 是HTML  中常⽤的标签。
定义⼀个简单的表格
<!--Add by oscar999-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Author" CONTENT="oscar999">
<script>
</script>
<style>
</style>
</HEAD>
table设置内边框<BODY>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</table>
</BODY>
</HTML>
以上的效果是不会出现边框的。
1. ⽅式⼀:定义table 的border 属性
<table border=1>
效果是会出现双边框的效果。
2. ⽅式⼆:使⽤CSS 定义
边框的定义样式可以定义的值有:
border-width规定边框的宽度。参阅:中可能的值。
border-style规定边框的样式。参阅:中可能的值。
border-color规定边框的颜⾊。参阅:中可能的值。
<!--Add by oscar999-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Author" CONTENT="oscar999">
<script>
</script>
<style>
table{
border: 1px solid blue;
}
</style>
</HEAD>
<BODY>
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>5</td>
<td>6</td>
</tr>
<tr>
<td>7</td>
<td>8</td>
<td>9</td>
</tr>
</table>
</BODY>
</HTML>
效果如下:
仅仅是最外层有边框,内边框没有。
如果要加上内边框的话,样式的定义:
<style>
table,td{
border: 1px solid blue;
}
</style>
上⾯表格具有双线条边框。这是由于 table、 td 元素都有独⽴的边框。
如果需要把表格显⽰为单线条边框,使⽤ border-collapse 属性,定义如下
<style>
table{
border-collapse:collapse;
}
table,td{
border: 1px solid blue;
}
</style>
看上去很简单,也很圆满。
但是在IE 8 以下的浏览器中会出现边框丢失的状况。
发⽣的状况是td 的值为空
以上的CSS 如下⽅式定义:
table{
border:green dotted;
border-width: 2 0  0 2;
}
td{
border:green dotted;
border-width: 0 2 2 0;
}
Chrome 的效果
但是在IE的效果
解决⽅法有两种:
1. 空的td 加上   
2. 使⽤上⾯介绍的 border-collapse:collapse; 就可以了。
HTML_TABLE内外边框颜⾊设置及页⾯居中
<table width="100%"  cellpadding="0" cellspacing="0" bgcolor="#a1a1a1" id="table2">---此处设置外边框颜⾊
<tr >
<td bgcolor="#ffffff" colspan="6" height="25" align=center><font color=#ea5e01 size=3><strong>房屋基本信息</strong></font></td> </tr>
<tr>
<td bgcolor="#E6E6FA" height="25" width="13%" align=center>房屋狀態</td>
<td bgcolor="#ffffff" width="20%" valign=center  >---此处设置单元格边框颜⾊
$TYPE$</td>
<td bgcolor="#E6E6FA" width="13%" align=center >房屋類別</td>此处设置单元下边框颜⾊
<td bgcolor="#ffffff" width="20%" valign=center >$FWLB$</td>
<td bgcolor="#E6E6FA" width="13%" align=center>所在地區</td>
<td bgcolor="#ffffff" width="20%" valign=center >$XS$</td>
</tr></table>
<table width="100%"  cellpadding="0" cellspacing="0" bgcolor="#a1a1a1" id="table2">---此处设置外边框颜⾊
<tr >
<td bgcolor="#ffffff" colspan="6" height="25" align=center><font color=#ea5e01 size=3><strong>房屋基本信息</strong></font></td> </tr>
<tr>
<td bgcolor="#E6E6FA" height="25" width="13%" align=center>房屋狀態</td>
<td bgcolor="#ffffff" width="20%" valign=center  >---此处设置单元格边框颜⾊
$TYPE$</td>
<td bgcolor="#E6E6FA" width="13%" align=center >房屋類別</td>此处设置单元下边框颜⾊
<td bgcolor="#ffffff" width="20%" valign=center >$FWLB$</td>
<td bgcolor="#E6E6FA" width="13%" align=center>所在地區</td>
<td bgcolor="#ffffff" width="20%" valign=center >$XS$</td>
</tr></table>
bordercolor="#254389"----设置所有边框颜⾊
style= "border:1px solid #000000;border-right-color:#FF0000;"
整体加边框: border:1px solid #000000;  1PX为边框⼤⼩,#000000为颜⾊!
只给某⼀边加边框: 右边框 border-right-color:#FF0000;
左边框 border-left-color:#FF0000;
上边框 border-top-color:#FF0000;
下边框 border-bottom-color:#FF0000;
HTML:table表格画线控制
⼀、表格中单元格之间分隔线的隐藏⽅法
第⼀⾏
第⼆⾏
这个表格去掉了单元格之间的纵向分隔线
第三⾏
第第第
这个表格去掉了单元格之间的横向分隔线
⼀⼆三
列列列
横线
这个表格去掉了单元格之间的纵向分隔线和横向分隔线
竖线
都没了
其实上⾯的三个表格都有三⾏三列,隐藏分隔线的诀窍在于rules,察看这三个表格的源代码,我们可以看到<TABLE>标签中都有 rules。它有三个参数(cols,rows,none),当rules=cols时,表格会隐藏纵向的分隔线,这样我们就只能看到表格的⾏;当rules= rows时,则隐藏了横向的分隔线,这样我们只能
看到表格的列;⽽当rules=none时,纵向分隔线和横向分隔线将全部隐藏。
⼆、表格边框的隐藏
普表
这是⼀普通的表格
通格
不怕下⾬只显⽰上边框
只显⽰下边框
下起⾬来该怎么办
上不着天
只显⽰左、右边框
下不着地
两边⾛开
只显⽰上、下边框
⽼⼦姓王
左右
为难
只显⽰左边框
左右
为难
只显⽰右边框
光秃秃
全脱了
不显⽰任何边框
表格边框的显⽰与隐藏,是可以⽤frame参数来控制的。请注意它只控制表格的边框图,⽽不影晌单元格。
只显⽰上边框 <table frame=above>
只显⽰下边框 <table frame=below>
只显⽰左、右边框 <table frame=vsides>
只显⽰上、下边框 <table frame=hsides>
只显⽰左边框 <table frame=lhs>
只显⽰右边框 <table frame=rhs>
不显⽰任何边框 <table frame=void>
三、表格边框
普表通格这是⼀普通的表格<table border="1" width="200" cellpadding="0" cellspacing="0"> <tr align="center">  <td>普</td> <td>表
</td> </tr> <tr align="center">  <td>通</td> <td>格</td> </tr> </table>
细表
线格
表格加上了漂亮的细线
(利⽤cellspacing1像素间隙和表格与单元格背景的不同)<table border="0" width="200" cellspacing="1" cellpadding="0" bgcolor="#000000" > <tr align="center" bgcolor="#FFFFFF">  <td bgcolor="#FFFFFF">细</td> <td bgcolor="#FFFFFF">表</td> </tr> <tr align="center" bgcolor="#FFFFFF">  <td bgcolor="#FFFFFF">线</td> <td bgcolor="#FFFFFF">格</td> </tr> </table>
细表
线格
这和上⾯那个可不⼀样,它⽤的是CSS,效果却⼀样。
(对单元格border的定义)<table width="200" cellspacing="0" cellpadding="0"> <tr align="center">  <td >细</td> <td >表</td> </tr> <tr align="center">  <td >线</td> <td >格</td> </tr> </table>
细表
线格
再进⼀步,把边框变成虚线,同样是CSS的神奇作⽤。<table width="200" cellspacing="0" cellpadding="0"> <tr align="center">  <td >细</td> <td >表</td> </tr> <td >线</td> <td >格</td> </tr> </table>
细线表格的扩展应⽤,奥妙就是在第个单元格中再套⼊⼀个表格。<table width="200" border="0" cellspacing="2" cellpadding="0"> <tr>  <td>    <table width="100%" border="0" cellspacing="1" cellpadding="0"
bgcolor="#000000">    <tr>    <td bgcolor="#FFFFFF"> </td>    </tr>    </table> </td> <td>      <table width="100%" border="0" cellspacing="1" cellpadding="0"
bgcolor="#000000">    <tr>      <td bgcolor="#FFFFFF"> </td>    </tr>    </table> </td> </tr> <tr>  <td>      <table width="100%" border="0" cellspacing="1" cellpadding="0" bgcolor="#000000">      <tr>      <td bgcolor="#FFFFFF"> </td>      </tr>      </table> </td> <td>      <table
width="100%" border="0" cellspacing="1" cellpadding="0" bgcolor="#000000">      <tr>      <td bgcolor="#FFFFFF"> </td>      </tr>      </table> </td> </tr> </table>
⽴表体格⽴体感的表格<table border="1" bordercolorlight="#ffffff" bordercolordark="#ffffff" width="200" cellpadding="0" cellspacing="0"> <tr align="center">  <td
bgcolor="#B7B7B7"  bordercolorlight="#000000" bordercolordark="#eeeeee" >⽴</td> <td
bgcolor="#B7B7B7"  bordercolorlight="#000000"

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。