1. //第一种
    2. div{
    3. width: 0;
    4. height: 0;
    5. border: 20px solid transparent ;
    6. border-bottom-color: red;
    7. }
    8. //第二种
    9. div{
    10. width: 0;
    11. height: 0;
    12. border-left: 15px solid transparent;
    13. border-right: 15px solid transparent;
    14. border-bottom: 30px solid red ;
    15. }