|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果不会怎么办,我的视频教程里有个最简单的留言板 最开始离不开模仿,CSS|打印 <html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style>
.tdp
{
border-bottom: 1 solid #000000;
border-left: 1 solid #000000;
border-right: 0 solid #ffffff;
border-top: 0 solid #ffffff;
}
.tabp
{
border-color: #000000 #000000 #000000 #000000;
border-style: solid;
border-top-width: 2px;
border-right-width: 2px;
border-bottom-width: 1px;
border-left-width: 1px;
}
</style>
</head>
<body onbeforeprint="printsub.style.display='none';" onafterprint="printsub.style.display='';">
<center><input type=button name="printsub" value=" 打印 " onclick="self.print();"><br></center>
<table width="90%" border="0" align="center" cellpadding="2" cellspacing="0" class="tabp">
<tr align="center">
<td height="25" colspan="3" class="tdp"><strong>盘算机世界开辟者俱乐部</strong></td>
</tr>
<tr>
<td width="31%" height="26" align="center" class="tdp">PHP版</td>
<td width="34%" align="center" class="tdp">DELPHI版</td>
<td width="35%" align="center" class="tdp">JAVA版</td>
</tr>
<tr>
<td height="40" colspan="3" class="tdp"><p>一段很小但很适用的CSS打印款式。普通带后台的表格在打印的时分,页面上看到的格线实践却打印不出来。其实不是打印不出来,是需求在打印的时分选择"打印后台"。1般不成能请求用户必需做这步。但用款式表"画"出来的格线在打印的时分就可以失掉"所见即所打"的后果。这后果固然不克不及和专业的打印控件如"水晶报表"想比,但知足通俗的需求仍是可以胜任的。</p></td>
</tr>
<tr>
<td height="59" colspan="3" class="tdp">但在打印的时分,"打印"按纽不克不及被打印出来,所以就在<body>里用两个事务来掌握它,这步很主要。</td>
</tr>
<tr>
<td height="59" colspan="3" class="tdp">在利用这两个款式时,1个是让<table>的class="tabp",然后再它上面的每一个<td>的class="tdp",<tr>不需求指定。记住,每一个<td>都要指定一下。。。。</td>
</tr>
<tr>
<td height="59" colspan="3" class="tdp">打印后果如图:(打印出的东东不包含菜单,只要上面的内容):</td>
</tr>
</table>
</body>
</html>
理解网站这一概念之后不难看出,任何网站都是由网页组成的,也就是说想完成网站,必须先学会做网页,因此必须要掌握了HTML,才能为今后制作网站打下基础。 |
|