To add a drop shadow to a box using CSS


Q. How to add a drop shadow to a box using CSS?

<!DOCTYPE html>
<html>
<head>
  <style>
    .shadow-box {
      width: 200px;
      height: 150px;
      background-color: white;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      margin: 50px auto;
      text-align: center;
      padding-top: 50px;
    }
  </style>
</head>
<body>
  <div class="shadow-box">Box with Shadow</div>
</body>
</html> 



OnlineTpoint is a website that is meant to offer basic knowledge, practice and learning materials. Though all the examples have been tested and verified, we cannot ensure the correctness or completeness of all the information on our website. All contents published on this website are subject to copyright and are owned by OnlineTpoint. By using this website, you agree that you have read and understood our Terms of Use, Cookie Policy and Privacy Policy.