Separate 2 div's with slope line

前端 未结 6 1832
栀梦
栀梦 2020-12-20 19:52

i want to seperate 2 floating div\'s with a slope line, they got different background colors.

Example here:

6条回答
  •  粉色の甜心
    2020-12-20 20:41

    Demo

    css

    #one {
        border-top: 200px solid gray;
        border-right: 100px solid transparent;
        height: 0;
        width: 30%;
        float:left
    }
    #two {
        border-bottom: 200px solid black;
        border-left: 100px solid transparent;
        height: 0;
        width: 30%;
        float:left;
        margin-left:-100px;
    }
    #wrap {
        width:400px;
        margin:0 auto;
    }
    

提交回复
热议问题