Jump to content

CSS Submit Buttons and Form Alignment


Shinji

Recommended Posts

Well, ive got a couple of questions for you geniouses :)First off, is it possible to use CSS to change a submit button on a form?

<input type="submit" value="Submit">

Next, can you use tables in forms to make it so that each text box entry starts and ends at the same place? Code is nice but i just need a yes or no answer.Thanks guys.

Link to comment
Share on other sites

First off, is it possible to use CSS to change a submit button on a form?

yes
<html><head><style>.submit{color:red;background-color:orange;border:3px dashed blue;}</style></head><body><form><input class="submit" type="submit" value="Submit"></form></body></html>

Next, can you use tables in forms to make it so that each text box entry starts and ends at the same place? Code is nice but i just need a yes or no answer.

Yes you can use tables in a form so that it looks better.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...