Can't be done with one div.

I didn't remember what I can do and what I cannot.

by jshacker

HTML

<div class="paint-spray-can"></div>

CSS

.paint-spray-can {
  height: 200px;
  width: 120px;
  background-color: #6666aa;
  margin: 0 auto;
  position: relative;
  top: 100px;
  box-shadow: 0 -50px 0 -9px #aaa;
}
.paint-spray-can::after {
  content: "";
  display: block;
  border: solid #777;
  border-width: 10px 75px;
  position: absolute;
  bottom: -20px;
  left: -15px;
  box-shadow:
    0 -215px 0 0 #777,
    0 -250px 0 -7px #777;
}