Tech Support Forum banner
Status
Not open for further replies.
1 - 3 of 3 Posts

· Registered
Joined
·
30 Posts
The empty box at the top left is the following DIV
<div id="iSiG_468x60" style="border: 1px solid rgb(213, 221, 229); width: 466px; height: 58px;">

You have give it a border and a specific hieght and width.

Then ten contents of that DIV is a FORM with the following CSS set

position:absolute;
right:10px;
top:10px;

The position: absolute allows specific position setting. Setting the top:10px and left:10px means that this form should be positioned exactly 10 pixels from the top and 10 pixels from the right. The FORM is literally being moved outside of it's parent DIV. But because the DIV has a specific Height and Width it is not collapsing.

May I ask what was the desired result?
 
1 - 3 of 3 Posts
Status
Not open for further replies.
Top