玩转表格 让你的网页炫起来
|
源代码网整理以下 1.表格的分隔线可以隐藏 源代码网整理以下 <table border rules=cols cellspacing=0 align=left> 可以隐藏横向的分隔线 源代码网整理以下 <table border rules=rows cellspacing=0 align=right>可以隐藏纵向的分隔线 源代码网整理以下 <table border rules=none cellspacing=0 align=center>可以隐藏横向和纵向的分隔线 源代码网整理以下 2.表格的边框不断在闪 源代码网整理以下 以下方法可以令表格的边框不断在闪,很实用的 源代码网整理以下 <table border="0" width="280" id="myexample" 源代码网整理以下 <tr> 源代码网整理以下 <td>加入任意的物件.加入任意的物件. 源代码网整理以下 <br>加入任意的物件.加入任意的物件. 源代码网整理以下 <br>加入任意的物件.加入任意的物件.</td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 <script language="JavaScript1.2"> 源代码网整理以下 <!-- 源代码网整理以下 function flashit(){ 源代码网整理以下 if (!document.all) 源代码网整理以下 return 源代码网整理以下 if (myexample.style.borderColor=="yellow") 源代码网整理以下 myexample.style.borderColor="lime" 源代码网整理以下 else 源代码网整理以下 myexample.style.borderColor="yellow" 源代码网整理以下 } 源代码网整理以下 setInterval("flashit()", 500) 源代码网整理以下 //--> 源代码网整理以下 </script> 源代码网整理以下 3.表格分行下载 源代码网整理以下 这个对表哥内容很大比较实用 源代码网整理以下 在需要分行下载处加上 <tbody > 源代码网整理以下 比如: 源代码网整理以下 <tbody > 源代码网整理以下 4.几种样式不同的表格 源代码网整理以下 <table border="1" width="220" style="position: absolute; left: 11; top: 11" height="26" > 源代码网整理以下 <tr> 源代码网整理以下 <td width="100%">普通表格</td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 5.正立方表格 源代码网整理以下 <table border="1" width="220" bordercolorlight="#eeeeee" bordercolordark="#000000" style="position: absolute; left: 10; top: 源代码网整理以下 <tr> 源代码网整理以下 <td width="100%">正立方表格</td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 6.细表格 源代码网整理以下 <table border="0" frame=vsides width="219" bgcolor="#000000" cellspacing="1" cellpadding="0" height="22" style="position: absolute; left: 11; top: 86"> 源代码网整理以下 <tr bgcolor="#FFFFFF"> 源代码网整理以下 <td width="100%" height="2">细表格</td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 7.立体表格 源代码网整理以下 <table border="1" width="220" bordercolorlight="#ffffff" bordercolordark="#ffffff" style="position: absolute; left: 10; top: 112" height="34"> 源代码网整理以下 <tr> 源代码网整理以下 <td width="100%" bgcolor="#B7B7B7" bordercolorlight="#000000" bordercolordark="#eeeeee" >立体表格</td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 8.无名表格 源代码网整理以下 <table width="220" align="center" style="position: absolute; left: 246; top: 12" height="51"> <tr> 源代码网整理以下 <td><fieldset style="width:220" align="center"> 源代码网整理以下 </td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 9.表中表效果Ⅱ 源代码网整理以下 <table width="220" align="center" style="position: absolute; left: 245; top: 89" height="110"> 源代码网整理以下 10.表中表效果Ⅰ 源代码网整理以下 <table width="220" align="center" style="position: absolute; left: 10; top: 120" height="138" cellspacing="1" cellpadding="0"> 源代码网整理以下 <tr> 源代码网整理以下 <td height="126"><fieldset style="width: 220; color: #B7B7B7; border-style: groove" align="center"> <legend style="color: 源代码网整理以下 </td> 源代码网整理以下 </tr> 源代码网整理以下 </table> 源代码网整理以下 11.表格中边框的显示 源代码网整理以下 只显示上边框 <table frame=above> |
