I cannot use a div here, because I need to use it several times in the same page and you are not allowed to use the same div more than once every page.
You can use a div with the same class multiple times.
You could do this:
HTML Code:
<div class="container">
<img src="afbeeldingen/jaarverslag2005/foto001.jpg" alt="jaarverslag 2005 foto 1" />
</div>
<div class="container">
<img src="afbeeldingen/jaarverslag2005/foto002.jpg" alt="jaarverslag 2005 foto 2" />
</div>
Code:
.container {
float:left;
width:100%;
text-align:center;
}
.container img {
border-style:none;
}
Or this if you want to position them individually:
HTML Code:
<div class="container1">
<img src="afbeeldingen/jaarverslag2005/foto001.jpg" alt="jaarverslag 2005 foto 1" />
</div>
<div class="container2">
<img src="afbeeldingen/jaarverslag2005/foto001.jpg" alt="jaarverslag 2005 foto 1" />
Code:
.container1, .container2 {
position:absolute;
width:100%;
text-align:center;
}
.container1 {
top:10px;
left:10px;
}
.container2 {
top:200px;
left:10px;
}
div img {
border-style:none;
}
Bookmarks