HTML:我如何让身体保持在同一个位置

时间:2013-10-04 02:01:25

标签: html css document-body

我正在玩一个网站,我无法让我的文本区域留在一个地方。

我有背景设置,但现在我只需要登录和密码按钮留在一个地方,无论你是否调整大小。

http://refractify.webuda.com/index.php

HTML代码

<!doctype html>
<html>

<link rel="icon" 
      type="image/ico" 
      href="favicon.ico">
<head>
<meta charset="utf-8">
<title>MewSeek | &lt;3</title>
<style type="text/css">
body {
        background-size: cover;
    background-color: #0c0c0c;
    background-image: url(images/MewSeek.png);
    background-repeat: no-repeat;

}


textarea {

          resize: none;
          text-align: center;
          font-color: #0F9;
          font-size:26px;
          color: #0F9;
          background-color: transparent;
          position: relative; 
          height: 35px;
width:343px!important; font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; 
}
</style>
<script type="text/javascript">
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
</script>
</head>
<div id="wrapper">
<body onLoad="MM_preloadImages('images/button2.png')">
<table width="1879" height="666" border="0" align="center">
  <tr>
    <td width="819" height="396">&nbsp;</td>
    <td width="257">&nbsp;</td>
    <td width="789">&nbsp;</td>
  </tr>
  <tr>
    <td height="36">&nbsp;</td>
    <div>
     <td>
       <p>
        <textarea maxlength="9" placeholder="Username"></textarea>
       </p>
      </div>
      <p>
        <div>
         <textarea maxlength="9" placeholder="Password"></textarea>
        </div>    
       </p></td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td height="21">&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td height="38">&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td height="108">&nbsp;</td>
    <td><a href="http://google.com" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Login','','images/button2.png',1)"><img src="images/button1.png" alt="" width="380" height="70" id="Login"></a></td>
    <td>&nbsp;</td>
  </tr>
</table>
</body>
</div>
</html>

1 个答案:

答案 0 :(得分:1)

有几点:

(1)为什么要使用表格进行这种简单的布局。 (2)自动启动声音是一个可怕的想法。如果我在没有戴耳机的情况下工作怎么办?不好。

重新解决你的问题。如果您正在谈论将用户名/密码保持在相同的相对位置,那么

(1)使用花车会很好用。 (2)如果你在谈论将它们保持在同一位置,那么绝对也会起作用。保持一切绝对位于中心,它将保持在您重新调整大小的相同位置。但是我认为绝对定位不是可行的方法。浮动可能是更好的解决方案。