请问HTML网页创建的表格 单元格里能插入斜线格吗?
第一种:
<HTML xmlns:v>
<style>
v\:* { behavior: url(#default#VML); }
</style>
<body>
<v:line from="0,0" to="260,100"></v :line>
</body>
</html>
第二种:
<script language="Javascript">
<!--
document.write(’<div style=\"font-size:1px;line-height:1px;letter-spacing:0px;\">’);
var te=’<font color=\"#ffffff\">’;
for(i=100;i>0;i--){te=’<font color=\"ffffff\">’;
for(j=1;j<i;j++){te=te+’■’;}
document.write(te+’</font><font color="#000000" id="a1">■</font>’);
te=’<font color=\"ffffff\">’;
for(k=0;k<100-i;k++){te=te+’■’;}document.write(te+’<br>’)}
document.write(’</div>’)
--></script> |