簡體   English   中英

頁腳DIV將不會位於頁面底部

[英]My footer DIV will not sit at the bottom of my page

我有一個頁腳div,它只是純色,我想坐在我的容器DIV底部的底部,稱為“ mainhome”。 我希望它可以擴展整個站點。 它只是一直停留在我的旗幟上-我現在正迷失在代碼中,所以也許我只是錯過了一些小東西?

先感謝您

我的HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="style.css" rel="stylesheet" type="text/css" />

</head>

<body>
<div class="mainhome">
    <div class="header">
      <div class="menubutton-leftside" style="margin-right:23px"><h2>home</h2></div>
      <div class="menubutton-leftside" style="margin-right:20px"><h2>about</h2></div>
      <div class="menubutton-leftside" style="margin-right:30px"><h2>portfolio</h2></div>
      <div class="menubutton-leftside" style="margin-right:27px"><h2>contact</h2></div>
        <div class="logo"><img src="images/es-logo.png" width="170" height="170" /></div> 
      <div class="menubutton-rightside" style="margin-left:17px"><h2>print</h2></div>
      <div class="menubutton-rightside" style="margin-left:25px"><h2>digital</h2></div>
      <div class="menubutton-rightside" style="margin-left:38px"><h2>illustration</h2></div>
      <div class="menubutton-rightside" style="margin-left:20px"><h2>brand</h2></div>
  </div>
        <div class="mainimage">
        <div id="slider_container">
  <div id="slides">
                <img src="images/slider/emmasteed.png" alt="Emma Steed Graphic Art and Web Design" />
                <img src="images/slider/graphicdesign-desk.png" alt="Emma Steed Graphic Art and Web Design" />
  </div>
</div>

    <div class="bluebar"></div>
        <div class="largemenubutton" style="margin-right:36px"><img src="images/portfolio.png" /></div>
        <div class="largemenubutton" style="margin-right:36px"><img src="images/getintouch.png" /></div>
        <div class="largemenubutton"><img src="images/aboutme.png" /></div>
        </div></div>
        <div class="footer"></div>
</body>
</html>

我的CSS

@charset "UTF-8";
/* CSS Document */

body {
    background-image:url(images/header-background.png);
    background-repeat:repeat-x;
    margin:0;
    padding:0;
}

.mainhome {
    width: 855px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
}

.header {
    height: 236px;
    background-image:url(images/header-background.png);
    background-repeat:repeat-x;
    clear:left;
}

.mainimage {
    width: 855px;
    height: 423px;
    background-color:#0C9;
    position:absolute;
    top:220px;
    float:left;
    z-index:-1;
}

#slider_container {
        width:855px;
        height:423px;
        overflow:hidden;
}

.bluebar {
    width: 855px;
    height: 16px;
    background-color:#334d5c;
    clear:left;
    float:left;
}

.menubutton-leftside {
    width:60px;
    height:20px;
    float:left;
    margin-top:95px;
}

.menubutton-rightside {
    width:60px;
    height:20px;
    float:left;
    margin-top:95px;
    text-align:right;
}

h2 {
    font-family:Tahoma, Geneva, sans-serif;
    font-size:12px;
    font-weight:normal;
    color:#666;
    display:inline;
}

.logo {
    width:170px;
    height:170px;
    float:left;
    margin-top:30px;
}

.largemenubutton {
    width:261px;
    height:259px;
    float:left;
    margin-top:20px;
}

.footer {
    width:100%;
    height: 61px;
    background-color:#334d5c;
    clear:left;
}

看起來.nameimage不需要絕對定位,但這取決於您要執行的操作。 粗略的示例: http : //codepen.io/anon/pen/oAbJy

如果您始終希望將其定位在最底層,則可能最簡單的方法就是給它固定的位置。 將以下內容添加到頁腳的CSS中。 (您可能還必須將身體的高度和寬度設置為100%)

position: Absolute;
bottom: 0px; 

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM