Input type buttons
Posted: Mon Jul 29, 2002 11:11 am
is there a way to change the properties of an input button? (color, font...)
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
.button
{
font-family: Verdana;
font-size: 10px;
color: #000000;
background: #ffffff;
border: #000000;
border-style: solid;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
width: 30px;
}Code: Select all
<input class='button' type='submit' name='submit' value='GO!'>Code: Select all
<input class='button' type='submit' name='1' value='GO 1'>
<input class='button' type='submit' name='2' value='GO 2'>
<input class='button' type='submit' name='3' value='GO 3'>