When I add a form or fieldset/legend tags these are block elements and must be a space(line) above/below them ?
When I add a form or fieldset/legend tags these are block elements and must be a space(line) above/below them ?
Please specify what you want in a better way. And then give your code so we can take a look at it.
Jeremy | jfein.net
I see a space after :
well this is normal ?Code:<form action="https://www.paphoscarhire.com/php/europrocessor-prices-mysql3.php" method="post" enctype="application/x-www-form-urlencoded" name="form1" target="_self" id="form1"> <fieldset>.......................</fieldset> </form>
how do this ? may NOT do it and include a
...<fieldset><table width="500"> ..............</table></fieldset> ?
I'm not sure if I fully understand what you are asking, but I think what Nile was trying to say is to do this:
Not This:Code:<form action="https://www.paphoscarhire.com/php/europrocessor-prices-mysql3.php" method="post" enctype="application/x-www-form-urlencoded" name="form1" target="_self" id="form1"> <fieldset width="500px">.......................</fieldset> </form>
Code:<fieldset><table width="500"> ..............</table></fieldset>
--------------------------------------------------Reviews, Interviews, Tutorials, and STUFF--------------------------------------------------Home of the SexyBookmarks WordPress plugin
<fieldset> what attributes include ?
Sorry, my goof... The proper way would be using CSS. Like the two examples below:
OR you could just markup your code like this:Code:<style type="text/css"> fieldset{ width:500px; } </style>
Code:<fieldset style="width:500px;">....</fieldset>
--------------------------------------------------Reviews, Interviews, Tutorials, and STUFF--------------------------------------------------Home of the SexyBookmarks WordPress plugin
Bookmarks