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.
我希望我制作的每一页都有不同的背景。我需要它能够刷新每个页面上的背景图像。我该怎么做呢?
把这个扔在你的脑海里:
<style type="text/css"> body { background: url(imagegoeshere.jpg); } </style>
并在您想要的每一页上进行更改。
在每个单独页面的正文中添加一个类。
<body class=pageName> ... </body> .pageName { background: url(example.gif); }