边框加FLASH加滚动文字
|
热爱生活
|
|
|
代码
<table style="BORDER-BOTTOM: #4876ff 3px dashed; BORDER-LEFT: #4876ff 3px dashed; BACKGROUND-COLOR: #4876ff; BORDER-TOP: #4876ff 3px dashed; BORDER-RIGHT: #4876ff 3px dashed" cellSpacing=0 cellPadding=30> <tbody> <tr> <td> <table cellSpacing=1 cellPadding=1 bgColor=#ffff00> <tbody> <tr> <td> <table width=580 bgColor=#4876ff> <tbody> <tr> <td width=300 align=left> <table cellPadding=20 width=300 bgColor=#4876ff> <tbody> <tr> <td align=middle><font color=#ffff00><embed style="VideoAttribute: 2000" height=350 type=application/x-shockwave-flash width=430 src=flash地址 ALLOWNETWORKING="internal" ALLOWSCRIPTACCESS="never"></embed></font></td> </tr> </tbody> </table> </td> <td width=300> <p> <wbr></p> <p><font color=#ffff00><strong><font size=3>标题</font></strong><br></font><br><br><br><br></p> <marquee direction=up height=200 scrollAmount=1><font color=#ffff00> 所要添加的文本内容<br></font></marquee><br><br></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </center>
代码:
<TABLE style="WIDTH: 660px; HEIGHT: 70px" borderColor=#da70d6 cellSpacing=8 cellPadding=10 width=660 align=center background=http://image16.360doc.com/DownloadImg/2010/10/2109/6152577_2 border=4> <TBODY> <TR> <TD> <TABLE style="WIDTH: 90%; HEIGHT: 30px" cellSpacing=1 cellPadding=3 align=right border=1> <TBODY> <TR> <TD> <P align=left> </P></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
|
|
需要编辑的内容,包括文字图片等
|
代码 <TABLE style="WIDTH: 660px; BORDER-COLLAPSE: collapse; HEIGHT: 116px" borderColor=#cccccc cellSpacing=2 cellPadding=2 align=center bgColor=#ffffff border=20> <TBODY> <TR> <TD> <P align=center>需要编辑的内容,包括文字图片等</P></TD> <TR> <TD> <P align=center></P> <TR> <TD> <P align=center></P></TD></TR></TBODY></TABLE>
|
|
一、边框
贴子的重要组成部分是先做一个边框。现在提供几个成品边框几代码:
1.一层边框(单表格)
代码:
<TABLE borderColor=#9900cc width="100%" border=10> <TBODY> <TR> <TD width="100%"></TD></TR></TBODY></TABLE>
=#9900cc 这是颜色代码,可以换成你需要的颜色。
2.两层边框(两张表格的嵌套)
Table No.1(Father Table)
Table No.1(Father Table) |
代码:
<table border=8 bordercolor=#0099cc width=100%> <tbody> <tr> <td>Table No.1(Father Table) <table border=8 bordercolor=#ccffcc width=100%> <tbody> <tr> <td><br>Table No.2(Son Table)<br></td> </tr> </tbody> </table> Table No.1(Father Table) </td> </tr> </tbody> </table>
3.三层边框(三张表格的嵌套)
代码:
<TABLE borderColor=#6633ff width="100%" border=8> <TBODY> <TR> <TD> <TABLE borderColor=#cc9966 width="100%" border=8> <TBODY> <TR> <TD> <TABLE borderColor=#003300 height=200 width="100%" border=8> <TBODY> <TR> <TD></TD> </TR> </TBODY> </TABLE> </TD> </TR> </TBODY> </table> </td> </tr> </tbody> </Table>
|