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.
我正在为将运行到几页的文档设计打印样式表。我希望每个页面的顶部都有一个公司徽标,顶部填充 5 厘米,所以我这样做了:
body { background:url(logo.png) no-repeat center top; padding-top:5cm; }
徽标按要求完美地出现在每个页面上。但是顶部填充仅出现在第一页上,并且每个后续页面的填充顶部为零。
难道我做错了什么?如何在每一页上获得顶部填充?
这可能是因为padding是相对于body标签计算的。在标记后使用padding-top带有直接包装元素的样式。body
padding
body
padding-top