Is there a way to incorporate a DIV above an input box (textbox) without causing the textbox's position to change? I want this DIV to appear or disappear based on whether the textbox is in focus or not. What is the correct CSS syntax to place this DIV directly above the textbox while keeping it stationary?
<td>
<div class="someclass">images</div>
<input type="text" maxlength="2" class="timebox" />
</td>
UPDATE
I updated the CSS based on the advice given by Ben Blank below, but now the DIV is appearing at the top left corner of the screen instead of within the table cell...
.inputbanner
{
position: absolute;
display: none;
width: 30px;
top: 0;
left: 0;
}