Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Eliminating the Extra White Space after Forms
How can I eliminate the extra space after a form?
✍: FYIcenter
HTML has no mechanism to control this. However, with CSS, you can set the margin-bottom of the form to 0. For example:
<form style="margin-bottom:0;" action=...> ... </form>
2007-03-03, 6495👍, 0💬
Popular Posts:
What is Windows DNA architecture? Note :- If you have worked with classic ASP this question can come...
Can each Java object keep track of all the threads that want to exclusively access to it?
Give me the example of SRS and FRS SRS :- Software Requirement Specification BRS :- Basic Requiremen...
Can you explain Forms authentication in detail ? In old ASP if you where said to create a login page...
Which bit wise operator is suitable for checking whether a particular bit is on or off? The bitwise ...