This the html code to create the button
<div class="delete-style">
<button type="button">DELETE</button>
</div>
and am using this css code to remove the border surrounding the text in the button
.delete-style {
background-color: red;
padding: 10px 20px;
text-decoration: none;
display: inline-block;
outline: None;
overflow: hidden;
}

.delete-style button {