如何在 html5 和 css3 中制作这个形状?

How can I make this shape in html5 and css3?

如何在 html5 和 css3 中制作这个形状?

#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>