CSS triangle filling for a progress bar
问题 I actually googled and searched some info but couldn't find it. My aim is to achieve something similar to progress bar styling such as filling inside of triangle. Is there any ways? JSFiddle .angle { width: 0; height: 0; border-left: 75px solid transparent; border-right: 75px solid transparent; border-bottom: 75px solid black; } 回答1: In order to make the triangle, I would use two pseudo elements to 'cut it out' of the square div. Then, with a nested div, use absolute positioning to allow you