Newer
Older
hello-programmer-world / src / sample / html / button-with-class.html
@h.sakamoto h.sakamoto on 17 Dec 587 bytes css.mdx
<style>
  .primary {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .danger {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .success {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
</style>
<button class="primary">送信</button>
<button class="danger">削除</button>
<button class="success">保存</button>