gpt4 book ai didi

css - 中心对齐 div 实际上不是中心

转载 作者:行者123 更新时间:2023-11-28 14:36:14 25 4
gpt4 key购买 nike

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

最佳答案

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

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

去掉该行的左/右边距(即使评论告诉我不要这样做)为我修复了它。

http://jsfiddle.net/4AX5b/

关于css - 中心对齐 div 实际上不是中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6688643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com