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 :: bootstrap table striped change color 
Css :: create circle border css 
Css :: call css html 
Css :: smooth button effect css 
Css :: ubuntu uninstall unity hub 
Css :: animation left to right css 
Css :: iphne media query csss 
Css :: flex flow 
Css :: option tag center 
Css :: flex decoration css 
Css :: nprogress css 
Css :: twig inline css 
Css :: tailwind css absolute pin 
Css :: grid css fr width of content 
Css :: css flexbox 
Css :: what is em in css 
Css :: css immediate child 
Css :: z-index 
Css :: angular css animation 
Css :: css select parent 
Css :: bootstrap database table cdn 
Css :: css multiple classes 
Css :: how to use nth-child 
Css :: how to saturate colors in css 
Css :: scrollbar 
Css :: update checkbox size css 
Css :: css local variable 
Css :: css grid 
Css :: circle as a pseudo element 
Css :: Install Golang On Linux (Ubuntu) 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =