Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 CSS 代码中,我设置了 background-image:url
height:100%;
但结果,100%捕获的范围只是屏幕的大小。如果页面有滚动,所有需要滚动的页面行似乎都没有这些背景。
有什么建议么?
注意:我的元素大小动态变化。
这是因为 100% 意味着 100% 的父元素。首先,确保您的文档实际上是 100% 的浏览器窗口。
html, body { width: 100%; height: auto !important; height: 100%; /* for older browsers */ min-height: 100%; }
body { background-image:url('paper.gif'); background-repeat:repeat-y; }