skip to Main Content

Html – Resize CSS triangle with window size

I have a div <div class="arrow-up"> that defines a triangle using CSS. Here's an example : .arrow-down { width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-top: 20px solid #f00; } <div class="arrow-down"></div> I'm trying to…

VIEW QUESTION
Back To Top
Search