comparison docs/candydoc/ie56hack.css @ 206:d3c148ca429b

Major moving of files. all src now goes into src, all docs in docs.
author Anders Johnsen <skabet@gmail.com>
date Tue, 12 Aug 2008 18:14:56 +0200
parents doc/candydoc/ie56hack.css@4c121c2aa844
children
comparison
equal deleted inserted replaced
205:8387cbaa85ab 206:d3c148ca429b
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 }