Hi
I have a problem with a difference of margins in IE for PC (latest version)
I have a set of pictures that I have put in a div with a class to define padding and border.
The div also needs to have a margin to float along the same left-side as the paragraphs that are on the page.
THe code looks like this (they are inside another div but it shouldn’t make a difference) :
<p>This is dummy text that is placed at the same page.</p>
<div class="photoborder"><img src="picture.jpg" /></div>
The CSS looks like this:
.photoborder {
float: left;
border: solid 1px #DDD;
padding: 4px;
margin: 0 5px 10px 40px;
}
Can anyone help me?