I have the following code that makes that when you work in a small window or zoom out to the window the divMenu in chrome overlaps the divPlegar (to fold or unfold the menu) and the divbody. I have tried different things, in IE11 it works correctly ( debugging and looking for the divMenu element I notice that it also occupies more against less zoom you give to the screen in IE11, but here it works well.) Will it be for z-index ? ) To see if someone can help me, I pass the code:
As I have the code right now, it just gives me the problem presented when folding and deploying in chrome, in IE11 it works well.
.divPlegar {
position:absolute;
z-index:2;
float:left;
background: url('img/ico_Exp.gif') center no-repeat;width:1px;height:5px;}
.divMenu {
position:absolute;
float:right;
width:10px;
height:100%;
z-index:1;}
.divBody {
z-index:0;float:left;width:90%;}