天天看点

css3 画三角形

<!DOCTYPE html>
<html>
<body>
<style>
#box{
    width: 0;
    height: 0;
    border: 100px solid transparent;
    border-bottom: 100px solid blue;
    }
</style>
<div id="box"></div>
</body>
</html>
           
css3 画三角形