IE (Internet Explorer) Form Tag problem
- 6 Comment
![]()
IE (Internet Explorer) Form Tag problem
Most of the desingners of html , perhaps faced this problem, that when use
form tag, extra white space or page break appear. This is most in the case of
using form tag outside a table or a td tag. There is no problem for the same
condition in mozilla. You know what to do.
We can solve this simply using CSS. Just add this
<style>
form {
margin:0;
padding:0;
}
</style>
This will solve your problem
6 Comments on this post
Trackbacks
-
Sean said:
Thank you for the tip, it should have been obvious to me but…
Problem solved!September 18th, 2007 at 10:44 pm -
Sean said:
Thanks for the tip. It should have been obvious to me but…
Problem solved!September 18th, 2007 at 10:46 pm -
viju said:
Edit Home Page:
Home:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam nisl.problem is: when i click submit button it says page not found specially in Internet Explorer.. if i refresh again required page will be displayed. can somebody help me?
April 8th, 2008 at 11:02 pm -
Sajith M.R said:
Make sure your form tag is properly closed, or properly nested. Check the action field too. if not solved, Mail you html code to admin@sajithmr.com . I will try my best.
Thanks you
April 9th, 2008 at 1:09 pm -
Michael said:
Ohhh thanks man, you saved my life!!!!
June 1st, 2008 at 5:17 pm -
Madz said:
You solved my problem! Thank you very much for that. This is what is great about developers who are not selfish, they share their solutions to problems and ideas. Thanks again.
November 13th, 2008 at 8:51 am




