您好我已经为客户完成了一个网站并在包括IE8在内的所有最新浏览器上进行了测试,它看起来很好。我还测试了它的不同分辨率,看起来很好。
这是网站:
你应该看看的是大文本和形式女巫都应该在中心对齐。我的客户给我发了一张照片,告诉我不知何故形式延伸到容器外面。他说这是来自铬但对我来说铬看起来不错。
这是我使用的标记:
<section>
<h1>Build your professional page and connect with people you need to <span> achieve your goals </span></h1>
<form>
<label for="name"><span>PAGE NAME</span><input type="text" value="What do you seek?" name="name" id="name"/></label>
<img src="img/frontpage/and.png" alt="and"/>
<label for="password"><span>PASSWORD</span><input type="text" value="What do you seek?" name="password" id="password"/></label>
<input type="submit" value="Create Page" id="press"/>
</form>
</section>
这就是css:
div#frontpage section{
width:700px;
margin:0 auto;
margin-top: 50px;
margin-bottom: 80px;
}
div#frontpage section h1{
font-size:48px;
text-align: center;
color:#060000;
}
div#frontpage section form{
margin-top: 65px;
position:relative;
}
div#frontpage section form label{
display:inline-block;
}
div#frontpage section form label span{
display: block;
color:#75aed2;
font-size:11px;
font-weight: bold;
margin-bottom: 5px;
}
div#frontpage section form input{
width:190px;
padding:8px 5px;
color:#d5d5d5;
font-weight: bold;
border:1px solid #bbbbbb;
font-size: 13px;
background-color: white;
}
div#frontpage section form label:first-child{
margin-right:57px;
}
div#frontpage section form img{
position:absolute;
top:20px;
left:226px;
}
div#frontpage section form input#press{
margin-left: 40px;
background-color: #1f70b3;
border:none;
color:white;
cursor: pointer;
padding: 12px 5px;
}
div#frontpage section form input#press:hover{
background-color: #2380ce;
}
如果我的css中有问题将表单扩展到它的容器之外我找不到它。但这是我的客户端使用的chrome版本中的hapens。如何修复?文本和表格框应完美对齐
编辑:新图片链接imagelink
答案 0 :(得分:1)
正如这里的人评论的那样,我看不到你提交的图片,因为它抛出了“错误:黑客试图非法下载出价附件”。
但是,如果您的客户在IE8(或旧浏览器)中遇到问题,则可能是由于您使用<section>
标记造成的。如果内存服务,IE8不支持HTML5。尝试将其更改为<div>
并查看其是否有效。