Answers for "step arrow css"

CSS
9

arrow down css

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-top: 75px solid #f00;
}
Posted by: Guest on May-11-2021
6

arrow left css

.arrow-left {
  width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent; 
  border-right: 60px solid blue; 
}
Posted by: Guest on May-11-2021
0

create arrow div css

div {
    	background-color: #ff6f61;
    	height: 125px;
    	width: 125px;
    	clip-path: polygon( 40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50% );
    }
Posted by: Guest on May-06-2022

Browse Popular Code Answers by Language