how to change button text in css code example

Example 1: button css

<a href="#" class="myButton">green</a>

.myButton {
	background-color:#44c767;
	border-radius:28px;
	border:1px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
	background-color:#5cbf2a;
}
.myButton:active {
	position:relative;
	top:1px;
}

Example 2: css change the button text value

document.getElementById("myButton").innerHTML="new button text";

Example 3: how to resize submit button in html

#search {
    width: 20em;  height: 2em;
}

Tags:

Misc Example