你好我在CSS中修复了一些背景问题。我需要把它固定在左下角。
background: url('./images/coura.png') no-repeat fixed;
width: 451px;
height: 736px;
position: fixed;
background-attachment: left bottom;
有什么方法可以做到吗?谢谢你的回答!
答案 0 :(得分:1)
您的元素需要在您想要背景的位置。添加left: 0px; bottom: 0px;
以使用固定定位。
答案 1 :(得分:0)
最简单的解决方案是将图片设置为background-image
的{{1}},并将body
属性设置为background-attachment
:
fixed
答案 2 :(得分:0)
另一种方法是将背景位置设置为bottom left
,如下所示:
background: url('./images/coura.png') bottom left no-repeat fixed;