0

好吧,我有一个 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;
}
4

3 回答 3

0

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

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

摆脱那条线上的左右边距(即使评论告诉我不要)为我修复了它。

http://jsfiddle.net/4AX5b/

于 2011-07-14T05:29:35.423 回答
0

找到了:

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

导致错误应该是:

#contact > div {
padding: 50px 0;
}
于 2011-07-14T05:33:51.743 回答
0

添加到您的 CSS:

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

演示小提琴

于 2011-07-14T05:05:16.397 回答