People are doing something to me that I do not understand
I created several divs like this:
div id="nome"
img src="img/00001.jpg"
/div
To put an image in the background of a page, but as I want to put some variables on top of that image I put her css like this:
#nome img{
width:1100px;
margin-top:0;
margin-left:0;
height:730px;
z-index: 0;
}
The problem is that when I put the tenth div with the same id, it does not receive the value of the css until the first eleven has already tried almost everything.
I know it might be a silly question, but I'm just asking here because I did not find the answer anywhere.