center align div实际上并不是中心

时间:2011-07-14 04:56:16

标签: css center fluid-layout

好吧,我有一个嵌套在另一个div内的div,内部div以80%宽度为中心。但它没有完全集中。

我如何让它完全居中?

http://jsfiddle.net/xx8hx/

http://postimage.org/image/15linq5yc/

的HTML

<div class="wrap">
  <div class="content">
    <h1>Contact</h1>
    <form action="/cgi-bin/cgiemail" method="post">
      <table width="50%" border="0" cellpadding="5" align="center">
        <tr>
          <td align="left" width="50%">First Name</td>
          <td><input name="FirstName" type="text" id="fname" size="25" /></td>
        </tr>
      </table>
    </form>
  </div>
</div>

的CSS

.wrap {
    overflow:hidden;
    width:100%;
    height:100%;
    position:absolute;
}
.content {
    width:80%;
    margin:20px auto;
    padding:15px;
    background:url(../images/contentback.png);
    border-radius:7px;
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
}

3 个答案:

答案 0 :(得分:0)

添加到您的CSS:

body, 
html {
    padding: 0;
    margin: 0;
}

Demo fiddle

答案 1 :(得分:0)

css中的填充线导致框偏离中心。

/* stop do not edit */
#contact>div {
    padding:50px 20px;
}

摆脱该行的左/右边距(即使评论告诉我不要)为我修复它。

http://jsfiddle.net/4AX5b/

答案 2 :(得分:0)

发现它:

/* stop do not edit */
#contact>div {
    pading: 50px 20px;
}

会导致错误:

#contact > div {
padding: 50px 0;
}