-1

I'd tried giving it a class and changing little stuff (like font or background) but it's not responsive.

4

1 Answer 1

1
<style>
.button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
</style>

<input type="button" class="button" value=" Button">

Not the answer you're looking for? Browse other questions tagged or ask your own question.