matrixindicator
IS-IT--Management
Basic question. When using a form with its elements (input types and labels), how to align these, with CSS, does there exist something like tab in html, I suppose putting these elements in a table is absolutely not done, forbidden ?
Code:
<div id="content">
<form method="post" action="_010FRMIN.php">
<label for="liters">LITERS:</label>
<input type="text" id="liters" name="liters" /><br />
<input type="submit" name="submit" value="Send" />
</form>
</div>