madprops
madprops

Reputation: 4023

Can't select text inside div

The right column works perfectly, when I try to do the same with the left one it acts as if it was disabled.

I hope somebody can spot what's wrong here

http://jsfiddle.net/madprops/5HudT/3/

Upvotes: 2

Views: 3522

Answers (1)

g_thom
g_thom

Reputation: 2810

If you set the z-index on #leftblockreal, it should be selectable:

#leftblockreal {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 1;
}

http://jsfiddle.net/g_thom/5HudT/4/

Upvotes: 5

Related Questions