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.
所以我有一个 SMF 论坛,我只需要将背景图片应用到主页。当我只是简单地将样式添加到 .body 时,它确实会更改主页背景,但也会更改其他部分,例如:论坛板和帖子。所以我只想在主页上显示背景图片,它不应该适用于其他论坛部分。这可能吗 ?
如果您只想要主页上的背景,最好使用内联样式方法。
<html> ... ... <body style="background-image: url("gradient_bg.png");"> ... ... </body> </html>
CSS 背景 CSS 如何
有可能的。最简单的方法是在主页正文元素中添加一个类。
<html> --- <body class="has-background-img"> --- --- </body>
此外,从您不希望出现背景图像的其他页面中删除此类。