[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [ProgSoc] HTML question



Joseph Madani wrote:
> Hi,
> 	I was wondering if someone would be able to help me with a simple
> HTML matter. I'm currently working on a website where I need to enclose a
> "submit" type button with form tags. The thing is, on Netscape, things
> look normal whereas with Internet Explorer, a height gap is created. This
> only happens when Iplace the submit button directly between form
> tags. Everywhere else things look relatively normal. Does anyone know of a
> way  to stop the height gap showing in IE? Thanks in advance,
> 								Joe.

Try something along the lines of the following:

<form style="margin: 0 0 0 0">
<input type="submit" name="submit" value="Submit Me!">
</form>

The style attribute will tell the browser to nuke the default margins 
that are created around the form element.

-Antony



-
You are subscribed to the progsoc mailing list. To unsubscribe, send a
message containing "unsubscribe" to progsoc-request@nospam.progsoc.uts.edu.au.
If you are having trouble, ask owner-progsoc@nospam.progsoc.uts.edu.au for help.