去除背景图片后首页底部出现白色区域
White area at bottom of home page after removing background image
我有一个简单的问题,很可能会有一个简单的解决方案。我检查了其他线程,但 none 似乎正确解决了我遇到的问题。
我的问题:主页底部有一个白色space。
我的目标是拥有一个纯黑色背景的页面,顶部有一个导航栏,黑色背景覆盖整个页面并且没有滚动条。目前我无法让 body 元素以黑色覆盖页面的高度,所以我在页面内容下方看到了一个大的白色 space。
我试过弄乱边距和填充,但我想我可能是在错误的位置上做的。
我的网站:www.hallofheroclix.com(完成时颜色将全黑)
非常感谢任何帮助。非常感谢您!
您还没有为正文指定背景颜色。
请在正文中添加背景CSS属性:
body {
color: #141412;
line-height: 1.5;
margin: 0;
background: #000000;
}
谢谢
**Try this instead**
I have looked you coding, i have made some changes to html structure and added some css.You can add / update this css to your css file style.css.
**Css**
<style>
.navbar {
text-align: center;
background-color: rgb(255, 242, 0);
position: static !important;
top: -230px;
}
html, body {
height: 100% !important;
}
.main-container {
background-color: red;
height: 301px;
}
#page {
height: auto;
min-height: 100%;
background-color: #000;
}
</style>
**Html**
<header id="masthead" class="site-header" role="banner">
<div id="navbar" class="navbar">
<nav id="site-navigation" class="navigation main-navigation" role="navigation">
<button class="menu-toggle">Menu</button>
<a class="screen-reader-text skip-link" href="#content" title="Skip to content">Skip to content</a>
<div class="nav-menu"><ul><li class="page_item page-item-6"><a href="">BP</a></li><li class="page_item page-item-20 current_page_item"><a href="">Home</a></li><li class="page_item page-item-24"><a href="">Test Subject</a></li></ul></div>
<form role="search" method="get" class="search-form" action="">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" title="Search for:" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form>
</nav><!-- #site-navigation -->
</div><!-- #navbar -->
</header><!-- #masthead -->
<div class="main-container">
<a class="home-link" href="# title="My Site" rel="home">
<h1 class="site-title">My Site</h1>
<h2 class="site-description">Cool logo coming soon!</h2>
</a>
</div>
<div id="main" class="site-main">
我有一个简单的问题,很可能会有一个简单的解决方案。我检查了其他线程,但 none 似乎正确解决了我遇到的问题。
我的问题:主页底部有一个白色space。
我的目标是拥有一个纯黑色背景的页面,顶部有一个导航栏,黑色背景覆盖整个页面并且没有滚动条。目前我无法让 body 元素以黑色覆盖页面的高度,所以我在页面内容下方看到了一个大的白色 space。
我试过弄乱边距和填充,但我想我可能是在错误的位置上做的。
我的网站:www.hallofheroclix.com(完成时颜色将全黑)
非常感谢任何帮助。非常感谢您!
您还没有为正文指定背景颜色。
请在正文中添加背景CSS属性:
body {
color: #141412;
line-height: 1.5;
margin: 0;
background: #000000;
}
谢谢
**Try this instead**
I have looked you coding, i have made some changes to html structure and added some css.You can add / update this css to your css file style.css.
**Css**
<style>
.navbar {
text-align: center;
background-color: rgb(255, 242, 0);
position: static !important;
top: -230px;
}
html, body {
height: 100% !important;
}
.main-container {
background-color: red;
height: 301px;
}
#page {
height: auto;
min-height: 100%;
background-color: #000;
}
</style>
**Html**
<header id="masthead" class="site-header" role="banner">
<div id="navbar" class="navbar">
<nav id="site-navigation" class="navigation main-navigation" role="navigation">
<button class="menu-toggle">Menu</button>
<a class="screen-reader-text skip-link" href="#content" title="Skip to content">Skip to content</a>
<div class="nav-menu"><ul><li class="page_item page-item-6"><a href="">BP</a></li><li class="page_item page-item-20 current_page_item"><a href="">Home</a></li><li class="page_item page-item-24"><a href="">Test Subject</a></li></ul></div>
<form role="search" method="get" class="search-form" action="">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" title="Search for:" />
</label>
<input type="submit" class="search-submit" value="Search" />
</form>
</nav><!-- #site-navigation -->
</div><!-- #navbar -->
</header><!-- #masthead -->
<div class="main-container">
<a class="home-link" href="# title="My Site" rel="home">
<h1 class="site-title">My Site</h1>
<h2 class="site-description">Cool logo coming soon!</h2>
</a>
</div>
<div id="main" class="site-main">