Click to See Complete Forum and Search --> : about buttons in HTML


blue143
02-28-2003, 03:36 PM
hi everyone,

havent been here in awhile but here i am again :)

what i can't understand is something to do with buttons..

i know how to make buttons (with the "<input..." tag)

but i can't understand how to change its color scheme to what i want..

and also, i could see on some sites buttons that looks just like normal buttons but while you hover over them with your mouse they change color (and i checked it is a standard button and not a script or an applet)

i really wanna know how i could do these things to buttons etc..

any help will be appreciated!

thanks alot for any input!

;)

pyro
02-28-2003, 03:48 PM
Please view the following example:

<input type="button" name="button" value="My test button" style="color: #8CB0E6; border: #3E65A0 1px solid; background-color:white" onMouseover="this.style.backgroundColor='#eeeeee';" onMouseout="this.style.backgroundColor='white';">

blue143
02-28-2003, 03:52 PM
just what i wanted to know :)

thanks alot !