Stylized floated and yanked-up button
by clayshannon
HTML
<button id="backToMain" name="backToMain">this is a button</button>
<br/>
<input type="button">This is an input button</input>
<button id="backToMain" name="backToMain">this is another button</button>
CSS
button {
border-collapse: separate;
color: rgb(203, 144, 1);
cursor: pointer;
font-family:'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
font-size: 11px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
float: right;
}
#backToMain2 {
margin-top: -2px;
}