0

I am new to css can you guys please help me out for making custom up arrow: Below is my html div with only one div I want to make arrow using before and after css properties:

    <div class="triangle-with-shadow"></div>
RVCoder
  • 522
  • 4
  • 14

1 Answers1

1

we have tried with below CSS code:

.triangle-with-shadow {
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 5;
}
.triangle-with-shadow:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border: 1px solid;
  transform: rotate(45deg);
  top: 75px;
  left: 25px;
  border-width: 1px 0 0 1px;
}
.triangle-with-shadow:before {
    width: 100px;
    background: white;
    height: 100px;
    position: absolute;
    content: "";
    top: 100px;
    border: 1px solid;
}
RVCoder
  • 522
  • 4
  • 14