<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.btn {
display: inline-block;
width: 110px;
white-space: normal;
word-wrap: break-word;
padding: 15px 25px;
margin: 10px;
background-color: lightblue;
border: 2px solid #56a9de;
border-radius: 5px;
text-align: center;
outline: none;
font-size: 18px;
color: #ffffff;
cursor: pointer;
}
</style>
</head>
<body>
<input type="button" class="btn" value="Some text" />
</body>
</html>