缩小浏览器时,响应灵敏的页脚在内容的一部分上显示



我是CSS和HTML的新手。

我知道这个问题已经被问到了几次,但我似乎无法解决我的当前问题。

我一直在研究小型小项目,例如尝试重新创建具有额外功能的其他网站。

我当前的任务是重新创建头版搜索区域,例如Google

实施和发行

当浏览器调整大小时,我一直专注于网站的响应能力,因此我一直在使用 flexbox

实施

带有容器ID的主div,分别为100%和相对位置。

容器Div内部是NAV(#NAV(,中心(#center(和页脚(#footer(元素及其各自的ID。

  • nav :flex显示器,基线Align-Items和9VH的最小值。
  • 中心:宽度为100%,10VH的最小值;
  • 页脚:绝对位置,底部 0 ,100%
  • 的宽度

我已经对页脚进行了一些研究,以及如何将其保持在页面底部,同时在收缩浏览器时会做出响应,但是我似乎已经停止了,或者我可能还没有完全理解如何如何处理让页脚停止某个元素。

问题

问题是我无法让页脚正常运行。我不希望它与主要内容中的bottons和链接重叠。调整Browswer的大小时,它停在搜索栏上,但是我希望它在符合按钮时停止。

您将从JSBIN链接中的代码片段中看到,我对页脚有问题。

当前HTML CSS文件和输出:JSBIN

*{
    margin: 0px;
    padding: 0px;
}
html, body {
    height: 100%;  
}
#container {
    min-height:100%;
    position:relative;
}
a:visited{
    color: #609;
}
/* ----- Navigation Styling ----- */
#nav {
    display: flex;
    border: 10px solid  goldenrod;               /*Colourful Borders*/
    min-height:9vh;
    justify-content:flex-end;
    align-items: baseline;
    background:#ff0;
    padding:10px;
}
/*Nav Content*/
/* ----- Center Styling ----- */
#center {
    width: 100%;
    background-color: white;
    min-height:10vh;     
}
.ctr_img {
    height: 92px;
    width: 272x;
    padding-top: 20px;
    
}
.ctr_img:hover {
    -webkit-filter: invert(100%);
}
.img_mic {
    padding: 0 8px;
    float: right;
    display:inline-block;
    top: -30px;
    position: relative;
}
.srch_bx {
    border-style: hidden;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08);
    max-width: 40%;
    min-height: 40px;
}
.srch_in {
    width: 100%;
    border-radius: 2px;
    border: none;
    overflow: auto;
    outline: none;
    left: 0px;
    background: url(data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D) transparent;
    font: 16px arial,sans-serif;
    display: inline-block;
    text-align: start;
}
.mic_set {
    background-size: 30px 30px;
    height: 100%;
    width: 26px;
}
.btn_sbmt {
    padding: 20px 50%;
    min-height: 20px;
    display: flex;
    justify-content: center;
}
.btn_srch, .btn_lcky {
    background-color: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 2px;
    color: #757575;
    font-family: arial,sans-serif;
    font-size: 1vw;
    font-weight: bold;
    margin: 11px 4px;
    padding: 0 16px;
    height: 36px;
}
    
.lang_diff{
    max-height: 28px;
    font-size: 0.9vw;
    margin-bottom: 24px;
    font-family: arial,sans-serif;
}
/* Footer Styling */
#footer {
    position:absolute;
    bottom:0;
    height: 5.2em; /* Height of the footer */
    width: 100%;
    min-height: 10vh;
    background-color: #f2f2f2;
    line-height: 40px; /*Specifies the line height.*/
    min-width: 400px;
}
.ctry {
    display: flex;
    margin-left: 30px;
    text-align: left;
    color: rgba(0,0,0,.54);
    border-top: 1px solid #e4e4e4;
    max-width: 150px;
}
.ctry_ftr {
    font-size: 1vw;
}
.opt_ftr {
    display: flex;
    justify-content:space-between;
    border:  1px solid #e4e4e4;
}
span.blft_ftr a, span.brght_ftr a, span.brght_stg a {
    text-decoration: none;
    color: #666;
    margin-left: 16px;
    font-size: 1vw;
}
.brght_ftr{
    margin-right: 30px;
    float: right;
}
.adv_ftr {
    padding: 0 16px;
    text-decoration: none;
    display: inline-block;
}
<!DOCTYPE html>
<html>
    <head>
        <title>Testing Ground</title>
        <link rel="stylesheet" type="text/css" href="style.css" />
        <link rel="stylesheet" type="text/css" href="reset.css" />
        <link rel="icon" href="http://www.favicon.cc/logo3d/53653.png" />
        <meta charset="UTF-8">
    </head>
    <body>  <!--FLEX-->
        <div id="container"> <!-- Added New for Footer behaviour -->
            <nav id="nav" class="nav_cls">
                <!--Currently at work-->
                <p>Navigation Bar Content</p> 
            </nav>
            <center id="center">
                <a class="img_link" href="">
                    <img class="ctr_img" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/PM5544_with_non-PAL_signals.png/250px-PM5544_with_non-PAL_signals.png" alt="image">
                </a>
                <div class="in_forms">
                    <div class="srch_bx">
                        <form>
                            <input class="srch_in" type="text" name="search"/>
                        </form>
                        <div class="img_mic">
                            <a href="https://youtu.be/Ye8mB6VsUHw ">
                                <img class="mic_set" src="https://cdn.sesamestreet.org/sites/default/files/1496328210/Cookie_Big.png" />
                            </a>
                        </div>
                    </div>
                </div>
                <div>
                    <div class="btn_sbmt">
                        <input class="btn_srch" type="submit" value="Don't Hide me!" name="search"/>
                        <input class="btn_lcky" type="submit" value="Seriously, Don't!" name="luck"/>
                    </div>
                </div>
                <div class="lang_diff">
                    Links:
                    <a class="lang" href="">Link1</a>
                    <a class="lang" href="">Link2</a>
                    <a class="lang" href="">Link3</a>
                    <a class="lang" href="">Link4</a>
                    <a class="lang" href="">Link5</a>
                </div>
            </center>
            <footer id="footer">
                <div class="ctry">
                    <span class="ctry_ftr">
                        First half of a footer 
                    </span>
                </div>
                <div class="opt_ftr">
                    <span class="blft_ftr">
                        <a class="adv_ftr" href="">Footer Link 1</a>
                        <a class="adv_ftr" href="">Footer Link 2</a>
                        <a class="adv_ftr" href="">Footer Link 3</a>
                    </span>
                    <span class="brght_ftr">
                        <a class="adv_ftr" href="">Footer Link 4</a>
                        <a class="adv_ftr" href="">Footer Link 5</a>
                    </span>
                </div>
            </footer>
        </div>
    </body>
</html>

访问网站

  • 页脚在内容上显示。我需要在页面的底部

  • html,CSS-粘性页脚在屏幕上显示内容

  • 页脚在内容上显示。我需要在页面的底部

  • 如何将页脚保持在页面底部

  • 粘性页脚

  • 页脚在窗口缩小时重叠主要内容

:(

恭喜,首先,遵循要求的规则。

您的问题来自将页脚排除在文档流中(position:absolute(。看起来您希望将其放置在文档流中。因此,将position:absolute更改为position:relative(或static(。

要将其始终保持在屏幕的底部,请将您的#container调整为display:flex;flex-direction:column;min-height:100vh并使#center生长:

#footer {
  position:static; /* this is default value of position
                    * so you could just remove `position:absolute`
                    * from your code.
                    */
}
#container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#center {
  flex-grow: 1;
}

看到它有效:

* {
  margin: 0px;
  padding: 0px;
}
html,
body {
  height: 100%;
}
#container {
  min-height: 100%;
  position: relative;
}
a:visited {
  color: #609;
}
/* ----- Navigation Styling ----- */
#nav {
  display: flex;
  border: 10px solid goldenrod;
  /*Colourful Borders*/
  min-height: 9vh;
  justify-content: flex-end;
  align-items: baseline;
  background: #ff0;
  padding: 10px;
}
/*Nav Content*/
/* ----- Center Styling ----- */
#center {
  width: 100%;
  background-color: white;
  min-height: 10vh;
}
.ctr_img {
  height: 92px;
  width: 272x;
  padding-top: 20px;
}
.ctr_img:hover {
  -webkit-filter: invert(100%);
}
.img_mic {
  padding: 0 8px;
  float: right;
  display: inline-block;
  top: -30px;
  position: relative;
}
.srch_bx {
  border-style: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
  max-width: 40%;
  min-height: 40px;
}
.srch_in {
  width: 100%;
  border-radius: 2px;
  border: none;
  overflow: auto;
  outline: none;
  left: 0px;
  background: url(data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D) transparent;
  font: 16px arial, sans-serif;
  display: inline-block;
  text-align: start;
}
.mic_set {
  background-size: 30px 30px;
  height: 100%;
  width: 26px;
}
.btn_sbmt {
  padding: 20px 50%;
  min-height: 20px;
  display: flex;
  justify-content: center;
}
.btn_srch,
.btn_lcky {
  background-color: #f2f2f2;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  color: #757575;
  font-family: arial, sans-serif;
  font-size: 1vw;
  font-weight: bold;
  margin: 11px 4px;
  padding: 0 16px;
  height: 36px;
}
.lang_diff {
  max-height: 28px;
  font-size: 0.9vw;
  margin-bottom: 24px;
  font-family: arial, sans-serif;
}
/* Footer Styling */
#footer {
  /* position: absolute; 
     bottom: 0; */
  height: 5.2em;
  /* Height of the footer */
  width: 100%;
  min-height: 10vh;
  background-color: #f2f2f2;
  line-height: 40px;
  /*Specifies the line height.*/
  min-width: 400px;
}
.ctry {
  display: flex;
  margin-left: 30px;
  text-align: left;
  color: rgba(0, 0, 0, .54);
  border-top: 1px solid #e4e4e4;
  max-width: 150px;
}
.ctry_ftr {
  font-size: 1vw;
}
.opt_ftr {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e4e4e4;
}
span.blft_ftr a,
span.brght_ftr a,
span.brght_stg a {
  text-decoration: none;
  color: #666;
  margin-left: 16px;
  font-size: 1vw;
}
.brght_ftr {
  margin-right: 30px;
  float: right;
}
.adv_ftr {
  padding: 0 16px;
  text-decoration: none;
  display: inline-block;
}
#footer {
  line-height: 2.42em;
}
#container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#center {
  flex-grow: 1;
}
<div id="container">
  <!-- Added New for Footer behaviour -->
  <nav id="nav" class="nav_cls">
    <!--Currently at work-->
    <p>Navigation Bar Content</p>
  </nav>
  <center id="center">
    <a class="img_link" href="">
      <img class="ctr_img" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c4/PM5544_with_non-PAL_signals.png/250px-PM5544_with_non-PAL_signals.png" alt="image">
    </a>
    <div class="in_forms">
      <div class="srch_bx">
        <form>
          <input class="srch_in" type="text" name="search" />
        </form>
        <div class="img_mic">
          <a href="https://youtu.be/Ye8mB6VsUHw ">
            <img class="mic_set" src="https://cdn.sesamestreet.org/sites/default/files/1496328210/Cookie_Big.png" />
          </a>
        </div>
      </div>
    </div>
    <div>
      <div class="btn_sbmt">
        <input class="btn_srch" type="submit" value="Don't Hide me!" name="search" />
        <input class="btn_lcky" type="submit" value="Seriously, Don't!" name="luck" />
      </div>
    </div>
    <div class="lang_diff">
      Links:
      <a class="lang" href="">Link1</a>
      <a class="lang" href="">Link2</a>
      <a class="lang" href="">Link3</a>
      <a class="lang" href="">Link4</a>
      <a class="lang" href="">Link5</a>
    </div>
  </center>
  <footer id="footer">
    <div class="ctry">
      <span class="ctry_ftr">
                        First half of a footer 
                    </span>
    </div>
    <div class="opt_ftr">
      <span class="blft_ftr">
                        <a class="adv_ftr" href="">Footer Link 1</a>
                        <a class="adv_ftr" href="">Footer Link 2</a>
                        <a class="adv_ftr" href="">Footer Link 3</a>
                    </span>
      <span class="brght_ftr">
                        <a class="adv_ftr" href="">Footer Link 4</a>
                        <a class="adv_ftr" href="">Footer Link 5</a>
                    </span>
    </div>
  </footer>
</div>

需要解决的另一个次要问题是使用px中的line-height,用于#footer,而其高度在em中表示,导致页面开发垂直滚动条。line-height:2.42em修复了它。


在另一个方面,我不公平地给您这个答案,而无需提及您的示例降低狭窄设备上的字体大小所带来的主要可访问性问题。尝试在任何手机上打开示例页面,您将理解我的意思。在任何时候,您页面中的元素应保持字体大小,以允许用户阅读。

网页的主要目的是呈现内容。如果您以一种禁用接收消息的用户功能的表单显示内容,则页面不执行其函数。

#footer绝对定位,这意味着父容器不知道它有多大(即它在"文档流"之外(。#container的高度设置为min-height: 100%,因此至少必须是父母的全高(在这种情况下为身体(,但是如果孩子的内容更高,则可以延伸以适应该额外的高度。

因为当#container试图弄清楚其高度时,不考虑#footer#container只是确保它可以适合其他position: staticposition:relative儿童。

因此,当您缩小浏览器的高度时,它很短,#container太短了 - 它不会为#footer留出空间。

有几种方法可以解决这个问题,尽管从响应的角度来看,如果#footer的高度取决于内容以及是否包装等,这很棘手。

如果您知道高度,则可以在#container的底部添加填充量(如果打开box-sizing: border-box;,它将不会添加到height: 100%上 - 将包括在内(,它将为#footer保留空间。

如果您不知道高度,则可以利用display: flex;填充全高度并使页脚自我对准底部,而无需使用position: absolute;。Flexbox有一些学习曲线,我建议您阅读一些教程。http://flexboxfroggy.com/是一个有趣的游戏,也可以帮助学习。

最新更新