Jump to content

azazel79it

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by azazel79it

  1. hi everyone! i have this problem: must put this stuff into xsl (it comes from an html page) <!--[if lte IE 6]> <style type="text/css"> /*<![CDATA[*/ html {overflow-x:auto; overflow-y:hidden;} /*]]>*/ </style> <![endif]--> <!--[if lte IE 6]> <style> /*<![CDATA[*/ #container, #container2 { position:absolute; } /*]]>*/ </style> <![endif]-->but of course the <!-- before the IF means a starting comment in xsl! does anyone knows how to do it? or maybe how i can manage this in css? thx!

  2. Where tutorial they say like that?In real life MSIE did not support fosition fixed (yet) at all.Look how it can be done with MSIE:http://w3schools.invisionzone.com/index.ph...indpost&p=15585scott is faster than I, again!  :)

    thanx Scott but this means that this page is wrong? http://www.w3schools.com/css/css_positioning.aspor (worst in my mind) means that it WAS supported in version 4, but IS NOT supported in version 6 of IE? this is something scary to think about! :) :)
  3. hi everyone, i have this problem: i wish to make a menu aligned to the bottom of the page, that stays there if i resize the window or i scroll vertically the page.here is a small example code, that works with Firefox 1.5.0.1 but seems that the css position:fixed doesn't work with IE (my version is 6.0something) even if on the w3schools css tutorial is said that IE supports it. :) does anybody knows what's my error? :) thank u in advance!MY EXAMPLE CODE:<html> <head> <title>BLA BLA PAGE </title> </head> <body> <table width="300px" height="500px" border="1" style="color:yellow; background-color:blue;"> <tr> <td> prova prova prova </td> </tr> </table> <table border="1" style="position:fixed; bottom:0px; color:white; background-color:red;"> <tr> <td> prova prova prova </td> </tr> </table> </body></html>

×
×
  • Create New...