Input type buttons
Moderator: General Moderators
Input type buttons
is there a way to change the properties of an input button? (color, font...)
yes, use stylesheet classes:
styles.css
then on your button just do:
styles.css
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!'>yes sir
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'>