|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
||||
|
||||
|
FireFox/IE Compatibility
hi, folks.
im trying to make this simple code do the same effect in Firefox and IE: ##################### .left { position: absolute; left: 0px; top: 0px; width: 180px; background-color: #FFFFFF; } .subMenuEsquerdo { position: relative; left: 0px; top: 0px; height: 18px; width: 180px; color: #006699; font-size: 12px; font-family: Verdana; font-weight: normal; text-align: center; cursor: pointer; background-color: #CCCCCC; } --------- <div class='left'> <span class='subMenuEsquerdo'>teste1</span> <span class='subMenuEsquerdo'>teste2</span> </div> ################### i dont know why - and HOW - it works one time <a href='http://temaver.blogspot.com/'>here</a>. and i wasnt able to find where is the error. the pics show both FF and IE results. please, be patient, people. im starting to work with layers. ![]() |
|
#2
|
||||
|
||||
|
You might be better off using an unordered list...
Code:
<html>
<head>
<style>
ul {
padding: 0;
margin: 0;
list-style-type: none;
width: 180px;
background-color: #FFFFFF;
}
ul li {
margin: 2px;
color: #006699;
font: normal 12px Veranda;
text-align: center;
cursor: pointer;
background-color: #CCCCCC;
}
</style>
</head>
<body>
<ul>
<li>teste1</li>
<li>teste2</li>
</ul>
</body>
</html>
|
|
#3
|
|||
|
|||
|
check this out
www.alistapart.com/dropdown/
|
|
#4
|
||||
|
||||
|
I assume that's refering to Suckerfish Dropdowns.
|
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Web Development > FireFox/IE Compatibility |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|