Answers for "down chevron symbol css"

1

chevron down html

▲ - U+25B2 BLACK UP-POINTING TRIANGLE
▼ - U+25BC BLACK DOWN-POINTING TRIANGLE
▴ - U+25B4 SMALL BLACK UP-POINTING TRIANGLE
▾ - U+25BE SMALL BLACK DOWN-POINTING TRIANGLE
Posted by: Guest on July-06-2021
0

css chevron arrow

:before{
    position: relative;
    /* top: 3pt; Uncomment this to lower the icons as requested in comments*/
    content: "";
    display: inline-block;
    /* By using an em scale, the arrows will size with the font */
    width: 0.4em;
    height: 0.4em;
    border-right: 0.2em solid black;
    border-top: 0.2em solid black;
    transform: rotate(45deg);
    margin-right: 0.5em;
    }
Posted by: Guest on June-03-2021

Browse Popular Code Answers by Language