gpt4 book ai didi

css - 底部页脚不会在横向模式 iOS 7 中停留

转载 作者:太空宇宙 更新时间:2023-11-04 13:45:59 25 4
gpt4 key购买 nike

我的网站快完成了,但我遇到了一个小问题。

我的网站上有一个固定的页眉和固定的页脚,采用响应式布局。

除了当我将手机“倾斜”到“横向”模式时,一切都按照我想要的方式工作。然后网站在底部创建一个“填充/边距”,页脚被“强制”起来,内容在底部创建一个灰色边框。页脚跟随内容。

但事情是这样的。它在我的其他具有更多内容(用于滚动)的页面上工作正常,但在我的只有一些联系信息的索引页面上不起作用。

当我向索引页添加更多文本时,它变得正常。

有人知道我做错了什么并且可以提供帮助吗?

我想有一个简单的解决方法,但我似乎找不到。

<title>Name</title>
<meta charset="utf-8">
<link rel="shortcut icon" href="images/icons/favicon.ico">
<link rel="stylesheet" href="style/structure.css">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0, minimal-ui" />

<?php include("style/header.php"); ?>

<div class="container">

<div class="content">

<h1>
Name
<br>
Tlf: Tlf
<br>
E-post: <a href="#">mail</a>
</h1>

</div> <!-- END CONTENT -->

</div> <!-- END CONTAINER -->

<?php include("style/footer.php"); ?>

* {
margin: 0px;
padding: 0px;
}

body {
margin: 0 auto;
width: 90%;
clear: both;
background-color: #FFFFFF;
color: #444444;
font-size: 87.5%; /* 14px */
font-family: times, 'timesnewroman', 'times new roman', 'bakersville', serif;
line-height: 1.5;
-webkit-font-smoothing: 'antialiased';
position: relative;
display: block;
}

header {
height: 40px;
width: 90%;
position: fixed;
z-index: 1;
border-bottom: 1px solid rgba(136, 136, 136, 0.4);
background-color: #FFFFFF;
top: 0;
display: block;
}

footer {
width: 90%;
height: 35px;
float: left;
border-top: 1px solid rgba(136, 136, 136, 0.4);
text-align: center;
position: fixed;
bottom: 0;
background-color: #FFFFFF;
padding-top: 5px;
display: block;
}

.container {
max-width: auto;
min-height: auto;
float: none;
display: block;
text-align: center;
}

.content {
background-color: #ffffff;
color: #999999;
margin: 0 auto;
display: block;
padding-top: 40px;
padding-bottom: 40px;
}

.content h1 {
color: #000000;
float: left;
font-size: 13px;
line-height: 1.3;
font-weight: normal;
font-family: helvetica;
text-align: left;
}

最佳答案

如果您在 safari (iOS7) 上的网站中看到灰色区域,它可能只是您的视口(viewport)。添加到 viewport meta: (height="device-height") 可能会解决您的问题。

关于css - 底部页脚不会在横向模式 iOS 7 中停留,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22509589/

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