בדיוק לפני כמה ימים עשיתי סקריפט כזה לחבר : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> <html> <head> <title>Get page width and height in standard compliant mode</title> <script type="text/javascript"> var width=document.documentElement.offsetWidth var height=document.documentElement.offsetHeight var nw=width*0.5; var nh=height*0.5; var margin=(height-nh)/2; </script><style type="text/css"> body {margin:0;overflow:hidden;border-style:none;height:100%} </style> </head> <body style='text-align:center'> <table id="aa" border=1> <tr> <td> <p style='text-align:center;vertical-align:center' >ssssss </p> </td> </tr> </table> <script type="text/javascript"> document.getElementById('aa').style.width=nw+'px'; document.getElementById('aa').style.height=nh+'px'; document.getElementById('aa').style.marginTop=margin+'px'; document.getElementById('aa').style.MarginBottom=margin+'px'; </script> </body> </html>
|