Hello everybody , I'm just asking for how to have two background images in html , the problem is that i need two different caracteristics in css . the first one is defined as :
html :
<body>
<img id="arriere" alt="" src="water.png" />
<h1>Mon super site</h1>
<p>Pour le moment, mon site est un peu <em>vide</em>. Patientez encore un peu !</p>
<p>Bonjour et <span class="salutations">bienvenue</span> sur mon site !</p>
</body>
css :
html, body {
background-color: black;
background-attachment: fixed;
color: white;
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
Thank you very much for answering .