[ cf-dev ] CSS for form tag

2003-01-24 Thread Paul Johnston
What's the CSS to stop a form tag outputting loads of space above it? You know when you put a form in a page and you just want the button to appear inline without any extra stuff (but it's just a button)... Paul PS It's not possible to move the form anywhere else. It's just adding in extra

RE: [ cf-dev ] CSS for form tag

2003-01-24 Thread Snake Hollywood
Usually you put the form tag between other tags that cannot contain content. E.g table form tr Then the extra space doesn't appear. -Original Message- From: Paul Johnston [mailto:[EMAIL PROTECTED]] Sent: 24 January 2003 12:04 To: [EMAIL PROTECTED] Subject: [ cf-dev ] CSS for form tag

RE: [ cf-dev ] CSS for form tag

2003-01-24 Thread Tim Blair
To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] CSS for form tag Usually you put the form tag between other tags that cannot contain content. E.g table form tr Then the extra space doesn't appear. Wrong. The space does appear, it's just not next to the button

Re: [ cf-dev ] CSS for form tag

2003-01-24 Thread Taz
Wrong. The space does appear, it's just not next to the button. It shouldn't do... could you show us an example? Taz -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For

RE: [ cf-dev ] CSS for form tag

2003-01-24 Thread Paul Johnston
Wrong. The space does appear, it's just not next to the button. It shouldn't do... could you show us an example? Taz It should! The Form element is a blockstyle element and so it will output a newline to the browser. Blockstyle elements, p, blockquote, form etc don't add on top of each

Re: [ cf-dev ] CSS for form tag

2003-01-24 Thread Damian Watson
Paul did the margin 0px not work? -- it may be IE only... - Original Message - From: Paul Johnston [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 24, 2003 12:39 PM Subject: RE: [ cf-dev ] CSS for form tag Wrong. The space does appear, it's just not next to the button