Top Shadow | CSS-Tricks

PHOTO EMBED

Mon Jun 22 2020 12:28:17 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #css

body::before {
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
}
content_copyCOPY

https://css-tricks.com/snippets/css/top-shadow/