How to delete modal

Learn how to use CSS to create a delete confirmation modal.

Click the button to open the modal:

Try It Yourself

How to create a delete modal

Step 1 - Add HTML:

<button onclick="document.getElementById('id01').style.display='block'">Open Modal</button>
<div id="id01" class="modal">
  <span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">×</span>
  <form class="modal-content" action="/action_page.php">
    <div class="container">
      <h1>Delete Account</h1>
      <p>Are you sure you want to delete your account?</p>
      <div class="clearfix">
        <button type="button" class="cancelbtn">Cancel</button>
        <button type="button" class="deletebtn">Delete</button>
      </div>
    </div>
  </form>
</div>

Step 2 - Add CSS:

* {box-sizing: border-box}
/* Set styles for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}
button:hover {
  opacity:1;
}
/* Make cancel and delete buttons float and add equal width */
.cancelbtn, .deletebtn {
  float: left;
  width: 50%;
}
/* Add color to the cancel button */
.cancelbtn {
  background-color: #ccc;
  color: black;
}
/* Add color to the delete button */
.deletebtn {
  background-color: #f44336;
}
/* Add padding and center text for the container */
.container {
  padding: 16px;
  text-align: center;
}
/* Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed in place */
  z-index: 1; /* Place on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scrolling if needed */
  background-color: #474e5d;
  padding-top: 50px;
}
/* Modal content/box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom, and centered 5% */
  border: 1px solid #888;
  width: 80%; /* The width can be more or less, depending on the screen size */
}
/* Set the style of the horizontal line */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
/* Modal close button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}
.close:hover {
.close:focus {
  color: #f44336;
  cursor: pointer;
}
/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
/* Change the style of cancel and delete buttons on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .deletebtn {
    width: 100%;
  }
}

Try It Yourself

Tip:You can also use the following JavaScript code to close the modal by clicking outside the modal content (not just by clicking the "x" or "cancel" button):

Instance

<script>
// Get the modal
var modal = document.getElementById('id01');
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}
</script>

Try It Yourself