Click here to Skip to main content
15,915,509 members
Home / Discussions / Web Development
   

Web Development

 
QuestionQuestion on Update Panel Pin
\laddie4-Sep-07 19:09
\laddie4-Sep-07 19:09 
QuestionPossible? Keep position absolute consistent in mozilla? [modified] Pin
Justincc4-Sep-07 9:17
professionalJustincc4-Sep-07 9:17 
AnswerRe: Possible? Keep position absolute consistent in mozilla? Pin
George L. Jackson4-Sep-07 10:11
George L. Jackson4-Sep-07 10:11 
GeneralRe: Possible? Keep position absolute consistent in mozilla? Pin
Justincc4-Sep-07 10:17
professionalJustincc4-Sep-07 10:17 
GeneralRe: Possible? Keep position absolute consistent in mozilla? Pin
George L. Jackson4-Sep-07 11:53
George L. Jackson4-Sep-07 11:53 
AnswerRe: Possible? Keep position absolute consistent in mozilla? Pin
Justincc5-Sep-07 3:49
professionalJustincc5-Sep-07 3:49 
GeneralRe: Possible? Keep position absolute consistent in mozilla? Pin
George L. Jackson5-Sep-07 8:04
George L. Jackson5-Sep-07 8:04 
AnswerRe: Possible? Keep position absolute consistent in mozilla? Pin
Justincc5-Sep-07 4:38
professionalJustincc5-Sep-07 4:38 
SOLUTION:

--------------------

Use ul for the absolute positioned content instead of the just a div.

The box models are still inconsistant between browsers with absolute positioned DIVs.

You can still wrap the ul in a wrapper div that has a set width and is positioned absolute so that the ul doesn't get pushed left and down to the next line.

------------------

css:
<code>
#esp_wrapper{
width:250px;
position:absolute;
display:inline;
}
.sd{
marginBlush | :O ;
position:absolute;
background-color:#efefef;
padding:6px;
padding-left:5px;
border:1px #bbb solid;
margin-top:15px;
margin-left:6px;
}
</code>

html:
<code><ul>
<li><a href="#">PDS</a></li>
<li><a href="#">Spec</a></li>
<li><a href="#">MSDS</a></li>
<li class="sd_drop" onmouseover="showHide('sd1', 'block');" onmouseout="showHide('sd1', 'none');">
<div id="esp_wrapper">
<a href="#">Español</a>
<br />
<ul class="sd" id="sd1">
<li><a href="#">PDS</a><br /></li>
<li><a href="#">MSDS</a></li>
</ul>
</div>
</li>
</ul>
</code>
QuestionEvent Firing?? Pin
tadhg884-Sep-07 4:51
tadhg884-Sep-07 4:51 
QuestionSetting Permissions on an MDB File Pin
Brendan Vogt3-Sep-07 23:13
Brendan Vogt3-Sep-07 23:13 
AnswerRe: Setting Permissions on an MDB File Pin
Fred_Smith3-Sep-07 23:23
Fred_Smith3-Sep-07 23:23 
Questionembed flash on button click in c#.net2.0 Pin
harryforum3-Sep-07 22:46
harryforum3-Sep-07 22:46 
QuestionProblem during User Authentication. Pin
nagendrathecoder3-Sep-07 20:21
nagendrathecoder3-Sep-07 20:21 
QuestionPROBLE - Uploading 5MB Excel file Pin
hifiger20043-Sep-07 5:07
hifiger20043-Sep-07 5:07 
AnswerRe: PROBLE - Uploading 5MB Excel file Pin
Fred_Smith3-Sep-07 13:16
Fred_Smith3-Sep-07 13:16 
AnswerRe: PROBLE - Uploading 5MB Excel file Pin
hifiger20045-Sep-07 10:47
hifiger20045-Sep-07 10:47 
QuestionTextBox in DataGrid Pin
nandhububbly3-Sep-07 0:11
nandhububbly3-Sep-07 0:11 
QuestionFunction for IFrame Pin
James_Programmer2-Sep-07 21:55
James_Programmer2-Sep-07 21:55 
QuestionImplementing your own map image in c#.net 2.0 to perform city search Pin
harryforum2-Sep-07 19:52
harryforum2-Sep-07 19:52 
Question[Message Deleted] Pin
dream_liner_7e71-Sep-07 12:14
dream_liner_7e71-Sep-07 12:14 
AnswerRe: identify client Pin
Christian Graus1-Sep-07 13:41
protectorChristian Graus1-Sep-07 13:41 
GeneralRe: identify client Pin
dream_liner_7e71-Sep-07 16:12
dream_liner_7e71-Sep-07 16:12 
GeneralRe: identify client Pin
Vasudevan Deepak Kumar2-Sep-07 0:01
Vasudevan Deepak Kumar2-Sep-07 0:01 
GeneralRe: identify client Pin
Vasudevan Deepak Kumar2-Sep-07 0:03
Vasudevan Deepak Kumar2-Sep-07 0:03 
AnswerRe: identify client Pin
Vasudevan Deepak Kumar2-Sep-07 0:02
Vasudevan Deepak Kumar2-Sep-07 0:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.