เหมือนเวลาเรา set ค่าใน microsoft excel เราสามารถปรับเปอร์เซนต์ได้ ว่า จะให้มันเล็กเท่าไหร่ ไม่ทราบว่าอันนี้ทำได้ป่าวคะ
Date :
2011-02-01 13:45:11
By :
แพร
No. 6
Guest
Code (PHP)
<style type="text/css">
@media print
{
#non-printable { display: none; }
#printable { display: block; }
}
</style>
</head>
<body>
<form name="frmMain" action="" method="post">
<div id="non-printable">
<font color="red">
This text no print. This text no print. This text no print. This text no print. <br>
This text no print. This text no print. This text no print. This text no print. <br>
This text no print. This text no print. This text no print. This text no print. <br>
This text no print. This text no print. This text no print. This text no print. <br>
</font>
</div>
<hr>
<div id="printable">
<font color="green">
This text print. This text print. This text print. This text print. <br>
This text print. This text print. This text print. This text print. <br>
This text print. This text print. This text print. This text print. <br>
This text print. This text print. This text print. This text print. <br>
<font>
</div>
</form>