1

这是我的网站:http ://www.alexklinghoffer.com/

如何将背景图像保持在底部?如果您使浏览器窗口变小,图像会向顶部漂移,但我想将其保留在右下角。这是我的代码:

HTML:

<body>

<div class="logo">
    <a href="http://www.alexklinghoffer.com"><img id="logo" src="images/aklogowhite.png" alt="Alex Klinghoffer Logo"/></a>
</div>

<div id="dock">
    <ul>
        <li><a href="/index.html"><span>&#160;Home&#160;</span><img src="images/home.png" alt="[photo]" /></a></li><!--
        --><li><a href="/bio.html"><span>&#160;Bio&#160;</span><img src="images/bio.png" alt="[photo]" /></a></li><!--
        --><li><a href="/resume.html"><span>&#160;Resume&#160;</span><img src="images/resume.png" alt="[photo]" /></a></li><!--
        --><li class="active"><a href="/collections.html"><span>&#160;Collections&#160;</span><img src="images/collections.png" alt="[photo]" /></a></li><!--
        --><li class="active"><a href="/references.html"><span>&#160;References&#160;</span><img src="images/references.png" alt="[photo]" /></a></li><!--
        --><li><a href="/contact.html"><span>&#160;Contact&#160;</span><img src="images/email.png" alt="[photo]" /></a></li><!--
        --><li><a href="/blog.html"><span>&#160;Blog&#160;</span><img src="images/blog.png" alt="[photo]" /></a></li><!--
        --><li><a href="http://www.facebook.com/alexklinghoffer"><span>&#160;Facebook&#160;</span><img src="images/facebook.png" alt="[photo]" /></a></li><!--
        --><li><a href="http://www.linkedin.com/in/alexklinghoffer"><span>&#160;LinkedIn&#160;</span><img src="images/linkedin.png" alt="[photo]" /></a></li>
    </ul>
</div>

<div id="content">

</div>

<div id="footer">
    <p>&copy; 2013 <a href="http://www.alexklinghoffer.com">Alex Klinghoffer</a></p>
</div><!--//footer-->

</body>
</html>

CSS

body {
    background: url("images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #111111;
    padding: 0;
    margin: 0;
}

提前致谢!

4

5 回答 5

6

你应该能够通过这样做来做到这一点,

background-attachment:fixed;
background-position:center bottom;

添加固定附件可确保在发生任何滚动时它保持在同一位置。

如果这不起作用,您也可以尝试,

html {height: 100%;}
body {
    background-position: 0% 100%;
    background-attachment: fixed;
}
于 2013-02-26T20:44:01.963 回答
1

只需使用基本的 CSS 代码..

{
background-image:url('smiley.gif');
background-repeat:no-repeat;
background-attachment:fixed;
background-position:right bottom;
}

If you want to choose some other metod for positioning your picture, you can go to: w3 schools site and see which option suits you best (really a good job done by w3 guys). Hope you find a solution. Cheers!

于 2013-02-26T22:30:39.267 回答
0

在你的 CSS 中试试这个:

background-position: center bottom;
于 2013-02-26T20:24:04.727 回答
0

尝试使用

background-position: right bottom;

正如Lowkase建议的那样。但要让它在 Firefox 和 Opera 中运行,您还应该设置

background-attachment: fixed;

它对我有用,或者我不明白你的问题。

于 2013-02-26T20:37:38.803 回答
0

这段代码让它在 Firebug (Firefox) 中工作。添加以下样式:

<style type="text/css">
html {
    height: 100%;
}

body {
    background-position: 50% 100%;
}
</style>
于 2013-02-26T20:39:36.977 回答