Is my assumption true?
I have a centered <div> which has a css id … it reffers to a background-image
In that <div> I have some text …
BUT
this text should start about 2em to the right …
If I use margin, the backgroundpicture is moved also, If I you padding, it’s uneffected in IE but correct in Moz.
>>>So I thought: the only way to get rid of the whole margin/padding thing is to create another <div> IN the excisting <div>
<div id="firstone">
<div id="secondone">
</div></div>
[css]
.secondone{margin-left = 2em;}
[/css]
Is my assumption correct???
3Pinter