table 在网页无法顶到头部问题

在做table背景图时,发现总无法顶到网页头部。烦闷了很久,终于在网上找到了解决方法,写下来大家分享。

<style type="text/css">
.bg {
   BACKGROUND-POSITION: center top; BACKGROUND-IMAGE: url(login3/images/bg.JPG); BACKGROUND-REPEAT: repeat-x; 
   BACKGROUND-COLOR: #1a4975 ;margin:2;
}
</style>
<body class="bg">
<TABLE cellSpacing=0 cellPadding=0 align=center border=0 >
   <tr>
    <td >
      <table style="height:620px;1002px;" background="login3/images/main.jpg" >
        <tr height="15px">
               </tr>

.bg样式中的margin:2; 表示与顶部有2 距离。

原文地址:https://www.cnblogs.com/hailexuexi/p/2067262.html