Button demo!

Button css properties!

Button text
Text-shadow
Pading
Border
Border radius
Box-shadow
Background colour

Button demo!

Copy the button HTML code!

 <button class="btn-css"> Button </button>

Copy the button CSS code!

.btn-css {
font-size: 20px;
font-family: Courier New;
font-weight: bold;
letter-spacing: 2px;
color: #ffffff;
padding: 10px;
border: 2px solid white;
border-radius: 10px;
background-color: #1B998B;
box-shadow: 0px 0px 5px gray;
text-shadow: 0px 0px 5px gray;
}