Newer
Older
hello-programmer-world / public / sample / html / button-with-style.html
<style>
  button {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
</style>
<button>クリック!</button>
<button>送信</button>
<button>キャンセル</button>