背景位置:固定

时间:2012-06-06 22:13:02

标签: javascript jquery html css

你好我在CSS中修复了一些背景问题。我需要把它固定在左下角。

http://i.imgur.com/Y1gKd.jpg

background: url('./images/coura.png') no-repeat fixed;
width: 451px;
height: 736px;
position: fixed;
background-attachment: left bottom;

有什么方法可以做到吗?谢谢你的回答!

3 个答案:

答案 0 :(得分:1)

您的元素需要在您想要背景的位置。添加left: 0px; bottom: 0px;以使用固定定位。

答案 1 :(得分:0)

最简单的解决方案是将图片设置为background-image的{​​{1}},并将body属性设置为background-attachment

fixed

http://jsfiddle.net/Wexcode/FEskF/

答案 2 :(得分:0)

另一种方法是将背景位置设置为bottom left,如下所示:

background: url('./images/coura.png') bottom left no-repeat fixed;