I have a submit button with a markup like this:
<li class="button"><div class="button">
<input type="submit" name="sign_in" id="sign_in" value="Prihlásiť" class="input-submit" /></div></li>
I want to hide it so it's not visible.
I did this:
.button, input.input-submit {
height: 0;
line-height: 0;
border: 0;
}
And that works in Firefox and IE8. But in IE7 there is still a space taken by the button even though it's not visible (so there is like a 20px gap).
What to do?