Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help with caused by </form> that I don't want

Status
Not open for further replies.

DataSpy

Technical User
Joined
Nov 15, 2002
Messages
39
Location
US
There's a line break after I use </form> and I don't want there to be a one. Anyone know a way around this?

You can check out what I'm talking about @ , it's in the lists to display column.

Any help would be greatly appretiated, thanx in advance!
 
zero form margin may help.
 
You can do this either inline:

Code:
<form ... style="margin:0px; padding:0px;">

or in a CSS file:

Code:
form {
   margin: 0px;
   padding: 0px;
}

Hope this helps,
Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Thanx, that worked!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top