We would like to know how to triangle pointing down in css.
<!--from w w w.j a va 2s . c om-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.arrow-down {
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid #f00;
}
</style>
</head>
<body>
<div class="arrow-down"></div>
</body>
</html>
The code above is rendered as follows: