Artifact Content
Not logged in

Artifact 177859c3a34718bb7c9e6a4acabb31938271261c


     1  /* This file is a part of CanDyDOC fileset.
     2     File is written by Victor Nakoryakov and placed into the public domain.
     3  
     4     This file is CSS to work around IE6 and earlier bugs. It's included just
     5     in these browsers. */
     6  
     7  
     8  /* Some magic to emulate unsupported "position: fixed" style. */
     9  #tabarea
    10  {
    11  	_position: absolute;
    12  	_top: expression(eval(document.body.scrollTop+8));
    13  }
    14  
    15  /* ditto */
    16  #explorerclient 
    17  {
    18  	_position: absolute;
    19  	_top: expression(eval(document.body.scrollTop+24));
    20  	_height: expression(eval(document.body.clientHeight-48));
    21  }