if i understand the documentation on z-index, you must have a higher z-index number to appear over top of other items with lesser z-index numbers, correct? for example "style=z-index: 9999;" should appear above z-index:9998; ?
and does it matter if its inline or in the head? cause the first example is inline, whereas the second is in the head. for some reason, the first one appears where it should but pushes the second one down below it, instead of layering over top of it. the first example (9999) is absolute, whereas the second example (9998) is relative. does that matter? cause when i set the second one to be absolute,it still didn't work. the 9999 example just pushed the 9998 example down the page instead of overlaying it

