I have an HTML doc that looks roughly like this:
<html>
<head><title>Example</title></head>
<body>
<div id="main_content" style="width:90%;">
<form id="searchbox" method="post" action="#">
<input type="text" name="search" />
<input type="submit />
</form>
</div>
</body>
</html>
How do I (horizontally) center the search form in the page?
Using CSS:
widthmargin-left:auto,margin-right:auto