CSS Arrow Generator

Home/Tools/Arrow Generator

Create customizable CSS arrows for tooltips and pointers.

No sign-up neededRuns in your browserProduction-ready CSS

Arrow Settings

10px
2px

Preview

Generated CSS & HTML
.arrow {
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  
  
  border-top: 10px solid transparent;
  border-right: none;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #6366f1;
  
  
}