I am applying position(in %) to some div but it is not working. Here is the code.
#transitions {
position: absolute;
top: 0;
bottom: 70%;
display: block;
}
But when i apply:
#transitions {
position: absolute;
top: 0;
bottom: 70em;
display: block;
}
it is working for me.
Is there any diffrence b/w % or em ?
Please help.