html - CSS alignment support -
css:
p.submit { text-align: center; }
html:
<p class="submit"> <input type="submit"value="submit" name="submit"/> </p>
i'm trying align submit button center, doesn't work.
if use margin:auto
on input
, center element. makes margins on both sides of element same. since input
inline element, have use display:block
, because can't adjust margins on inline elements
input { margin:auto; display:block }
also, example works me in firefox 22
Comments
Post a Comment