Search
 
SCRIPT & CODE EXAMPLE
 

CSS

arrow down css

.arrow-down {
  width: 0; 
  height: 0; 
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-top: 75px solid #f00;
}
Comment

arrow left css

.arrow-left {
  width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent; 
  border-right: 60px solid blue; 
}
Comment

arrow up css

.arrow-up {
  width: 0; 
  height: 0; 
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-bottom: 75px solid #761E9B;
}
Comment

arrow right css

.arrow-right {
  width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid green;
}
Comment

up arrow css

/*modify rotate value to change direction of arrow...*/
.arrow{
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg); 
}
Comment

PREVIOUS NEXT
Code Example
Css :: move element in front of another css 
Css :: table font size 
Css :: react html height 100% 
Css :: set border only left and right css 
Css :: removing input border shadow 
Css :: background opacity css hex 
Css :: boostrap line 
Css :: how to stretch picture with website css 
Css :: force aspect ratio div 
Css :: how to scale a bg image acc to size of div 
Css :: select2 hide selected options 
Css :: css disable button click 
Css :: change color when you mouse over a link (hover) 
Css :: width css property 
Css :: how to view downloading speed 
Css :: css pointer event 
Css :: download s3 bucket files on l local 
Css :: css grid auto width 
Css :: center an image 
Css :: decrease div size 
Css :: css move animation 
Css :: css style placeholder 
Css :: warning: LF will be replaced by CRLF in Design/css/bootstrap.min.css. 
Css :: text-overflow: ellipsis 2 lines 
Css :: html table scrollable body fixed header 
Css :: css hide mark border 
Css :: css percentrage minus px 
Css :: overlay color on image css 
Css :: css filter img color etc 
Css :: select last tr in table css 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =