Hi I am currently having a problem DIV layers
Say I have this set for my body in CSS
So that is going to set a thick border around my page...
The problem is when do a <div> layer like this..
In IE the word "Hey" is placed below the border as it should be, but in Firefox/Netscape its placed over the border.
Is there a fix to this?
Say I have this set for my body in CSS
Code:
Body{
border-width:30px;
border-color:000033;
border-style:solid;
}
The problem is when do a <div> layer like this..
Code:
<div style="top:0px">Hey</div>
Is there a fix to this?