如何在html5和css3中创建这个形状?

时间:2015-12-23 17:52:54

标签: html css html5 css3 css-shapes

如何在html5和css3中创建此形状?

enter image description here

1 个答案:

答案 0 :(得分:3)

#big {
        position: relative;
        background: black;
        width: 600px;
        height: 600px;        
    }
    #in {
        position: absolute;
        background: black;
        width: 280px;
        height: 280px;
        bottom:0;
        right: 0;
        border-top: 20px solid white;
    border-left: 20px solid white;
    }
<div id="big">
    <div id="in"></div>
</div>