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.
我在 Wordpress 中创建了一个页面。我需要 #content 为 100% 的宽度和高度,背景图像会随着浏览器窗口的变化而调整大小。
任何建议如何实现这一目标?
埃里克
在您的样式表中:
#content { width:100%; height:100%; background:url(path_to_your_image.png) no-repeat top center; background-size:100% 100%; }
高度工作可能很棘手。你也可以添加到你的样式表文件中......
html { height:100%; }
或者如果那不这样做,试试这个......
body, html { height:100%; }
..希望它不会引起任何其他问题。