Forum Moderators: not2easy
I usually find it useful when coming across a situation where browsers are behaving differently to re-examing my initial code. Is it actually doing what I think it should? Can I get the effect I want in a different and more compatible way?
FF: lifts the field up for 2px
OP: for 1px
IE: does nothing (good)
Of course i can fix, lets say ff, with:
position: relative;
top: -2px;
top: expression(0);
But then OP goes wrong for 1px... its closed circle :/