gpt4 book ai didi

html - CSS 和 Firefox 有时会出现 Safari 问题

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

我开始布局一个网站,我在 firefox 中遇到了问题,有时在 safari 中遇到了问题,具体取决于条件,例如在 safari 中,如果我通过在地址栏中键入它来加载页面,它将与搜索 div 一起显示在标题边框的中间,但如果我再次突出显示地址栏并按回车键,它会正确显示,如果我在正确显示所有内容后单击刷新,它将导致搜索框位于标题边框的中间,还有登录名div 消失。在 chrome 中一切都很好。在 Firefox 中,提交按钮位于文本输入字段下方,无论我做什么,它似乎都留在那里。我的代码在这里 http://jsfiddle.net/ES2Mz/及以下:

<html>
<head>
<title>
TESTING!
</title>
<LINK href="CLLProfile.css" rel="stylesheet" type="text/css">
</head>

<body>

<div class="container">

<div id="header">
<img src="http://www.placekitten.com/400/100">

<div class="login">
<a href="http://www.signup.com">Sign Up</a> <a href="http://www.login.com">Login</a>
</div>

<div class="search">
<form id ="search" action="" method="post" enctype="multipart/form-data">
<label>Search:</label>
<input type="text" name="searchBox" id="searchBox" /> <input type="submit" id="Submit" value="Submit" />
</form>
</div>

</div>

<div class="content">
Here is the CONTENT
<div class="profileInfo">
PROFILE INFO
</div>
</div>

</div>


</body>

</html>​

CSS

body{
background: gainsboro;

}

.container{
padding-top: 20px;
background: gold;
width: 900px;
height: 1300px;
margin: 0 auto;

}

.content {
background: #aad500;
width: 800px;
height: 1100px;
margin: 0 auto;
border: black solid medium;
}

#header {

width: 800px;
height: 150px;
margin: 0 auto;
background: #aad500;
border: black solid medium;

}

#header img{
position: relative;
left: 50px;
top: 25px;

}

.login {
width: 350px;
height: 35px;
float: right;
background: #aad500;
}

.search{
background: #aad500;
color: white;
width: 250px;
height: 20px;
position: relative;
margin-top: 10px;
margin-left: 550px;
}

.profileInfo{
background: whitesmoke;
width: 750px;
height: 800px;
margin-top: 50px;
margin-left: auto;
margin-right: auto;


}

.login a{
float: right;
margin-left: 10px;
margin-right: 20px;
margin-top: 5px;
font-size: large;
color: whitesmoke;

}​

最佳答案

我解决了我忘了添加 <!DOCTYPE>

关于html - CSS 和 Firefox 有时会出现 Safari 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13329353/

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