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 } 

fiddle

also, example works me in firefox 22

fiddle


Comments

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

css - Firefox for ubuntu renders wrong colors -