Chrome version 26 seems to be having trouble with z-index, especially when I have two divs.
<style>
#div1{
position:relative;
z-index:1000;
}
#div2{
position:absolute;
z-index:10001;
</style>
Interestingly, the z-index works perfectly fine on Firefox, but not on Chrome.